17 lines
483 B
Bash
Raw Normal View History

2026-01-21 18:59:54 +08: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
2026-01-29 22:25:33 +08:00
echo "drivers/gpu/drm_mm: module test-drm_mm is not found in /lib/modules/`uname -r` [skip]"
2026-01-21 18:59:54 +08: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
2026-01-29 22:25:33 +08:00
echo "drivers/gpu/drm_mm: module test-drm_mm could not be removed [FAIL]"
2026-01-21 18:59:54 +08:00
exit 1
fi