mirror of
				https://github.com/tiagovignatti/intel-gpu-tools.git
				synced 2025-11-04 12:07:12 +00:00 
			
		
		
		
	Signed-off-by: Mike Mason <michael.w.mason@intel.com> Signed-off-by: Thomas Wood <thomas.wood@intel.com>
		
			
				
	
	
		
			17 lines
		
	
	
		
			366 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			366 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
# Test some of the most critical tools we have accidentally broken before.
 | 
						|
# TODO: Possibly make tests parse output
 | 
						|
 | 
						|
SOURCE_DIR="$( dirname "${BASH_SOURCE[0]}" )"
 | 
						|
. $SOURCE_DIR/drm_lib.sh
 | 
						|
 | 
						|
# ARB_MODE has existed for many gens
 | 
						|
PATH=$SOURCE_DIR/../tools:$PATH
 | 
						|
do_or_die "intel_reg_read 0x4030"
 | 
						|
do_or_die "intel_reg_dumper"
 | 
						|
 | 
						|
# TODO: Add more tests
 | 
						|
 | 
						|
exit 0
 | 
						|
 |