Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: a55aa89aab90fae7c815b0551b07be37db359d76 authored by Linus Torvalds on 25 August 2019, 19:01:23 UTC
Linux 5.3-rc6
Tip revision: a55aa89
drm_mm.sh
#!/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
       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
back to top