aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/drivers/gpu/drm_mm.sh
blob: 96dd55c927994b76b7a7d96bf36d3cf63a7c4d47 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
# Runs API tests for struct drm_mm (DRM range manager)

if ! /sbin/modprobe -n -q test-drm_mm; then
       echo "drivers/gpu/drm_mm: [skip]"
       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
       echo "drivers/gpu/drm_mm: [FAIL]"
       exit 1
fi