3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-01-31 07:12:18 +00:00
Brooklyn/tools/testing/selftests/drivers/gpu/drm_mm.sh

17 lines
483 B
Bash
Raw Normal View History

2022-04-02 13:24:21 +00:00
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0
# Runs API tests for struct drm_mm (DRM range manager)
if ! /sbin/modprobe -n -q test-drm_mm; then
2022-09-09 09:21:57 +00:00
echo "drivers/gpu/drm_mm: module test-drm_mm is not found in /lib/modules/`uname -r` [skip]"
2022-04-02 13:24:21 +00:00
exit 77
fi
if /sbin/modprobe -q test-drm_mm; then
/sbin/modprobe -q -r test-drm_mm
echo "drivers/gpu/drm_mm: ok"
else
2022-09-09 09:21:57 +00:00
echo "drivers/gpu/drm_mm: module test-drm_mm could not be removed [FAIL]"
2022-04-02 13:24:21 +00:00
exit 1
fi