17 lines · bash
1#!/bin/sh2# SPDX-License-Identifier: GPL-2.03# Runs hardware independent tests for i915 (drivers/gpu/drm/i915)4 5if ! /sbin/modprobe -q -r i915; then6 echo "drivers/gpu/i915: [SKIP]"7 exit 778fi9 10if /sbin/modprobe -q i915 mock_selftests=-1; then11 /sbin/modprobe -q -r i91512 echo "drivers/gpu/i915: ok"13else14 echo "drivers/gpu/i915: [FAIL]"15 exit 116fi17