Skip to content

Commit

Permalink
selftests/drivers/gpu: Add error messages to drm_mm.sh
Browse files Browse the repository at this point in the history
Add error messages when the module test-drm_mm is not found or could
not be removed to make tests output more readable.

Signed-off-by: Gautam Menghani <gautammenghani201@gmail.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
  • Loading branch information
Gautam Menghani authored and Shuah Khan committed Jun 28, 2022
1 parent 6b56f5f commit 8587f37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/testing/selftests/drivers/gpu/drm_mm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
# 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]"
echo "drivers/gpu/drm_mm: module test-drm_mm is not found in /lib/modules/`uname -r` [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]"
echo "drivers/gpu/drm_mm: module test-drm_mm could not be removed [FAIL]"
exit 1
fi

0 comments on commit 8587f37

Please sign in to comment.