mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-08 16:36:14 +00:00
Now that we've abandonded the autohell testrunner, need to port this over. Easiest is to just add another testcase ... Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
9 lines
159 B
Bash
Executable File
9 lines
159 B
Bash
Executable File
#!/bin/bash
|
|
|
|
whoami | grep root || ( echo ERROR: not running as root; exit 1 )
|
|
|
|
SOURCE_DIR="$( dirname "${BASH_SOURCE[0]}" )"
|
|
. $SOURCE_DIR/drm_lib.sh
|
|
|
|
exit 0
|