License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-block.git] / tools / testing / selftests / drivers / gpu / drm_mm.sh
CommitLineData
50f0033d 1#!/bin/sh
b2441318 2# SPDX-License-Identifier: GPL-2.0
50f0033d
CW
3# Runs API tests for struct drm_mm (DRM range manager)
4
5if ! /sbin/modprobe -n -q test-drm_mm; then
6 echo "drivers/gpu/drm_mm: [skip]"
7 exit 77
8fi
9
10if /sbin/modprobe -q test-drm_mm; then
11 /sbin/modprobe -q -r test-drm_mm
12 echo "drivers/gpu/drm_mm: ok"
13else
14 echo "drivers/gpu/drm_mm: [FAIL]"
15 exit 1
16fi