1
0
镜像自地址 https://github.com/tiagovignatti/intel-gpu-tools.git 已同步 2025-12-18 11:58:53 +00:00
ntel-gpu-tools/tests/tools_test
Ben Widawsky 89d96a12d6 tests: Basic tools tester
Requested-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Ben Widawsky <ben@bwidawsk.net>
2013-07-21 22:04:20 -07:00

19 行
447 B
Bash
可执行文件

#!/bin/bash
# Test some of the most critical tools we have accidentally broken before.
# TODO: Possibly make tests parse output
whoami | grep -q root || ( echo ERROR: not running as root; exit 1 )
SOURCE_DIR="$( dirname "${BASH_SOURCE[0]}" )"
. $SOURCE_DIR/drm_lib.sh
# ARB_MODE has existed for many gens
do_or_die "$SOURCE_DIR/../tools/intel_reg_read 0x4030"
do_or_die "$SOURCE_DIR/../tools/intel_reg_dumper"
# TODO: Add more tests
exit 0