mirror of
				https://github.com/tiagovignatti/intel-gpu-tools.git
				synced 2025-11-04 12:07:12 +00:00 
			
		
		
		
	With the move to intel-gpu-tools, we need to update that as well. Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
		
			
				
	
	
		
			12 lines
		
	
	
		
			291 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			291 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
SRCDIR=${srcdir-`pwd`}
 | 
						|
BUILDDIR=${top_builddir-`pwd`}
 | 
						|
 | 
						|
${BUILDDIR}/assembler/intel-gen4asm -o TEST.out $SRCDIR/TEST.g4a
 | 
						|
if cmp TEST.out ${SRCDIR}/TEST.expected 2> /dev/null; then : ; else
 | 
						|
  echo "Output comparison for TEST"
 | 
						|
  diff -u ${SRCDIR}/TEST.expected TEST.out
 | 
						|
  exit 1;
 | 
						|
fi
 |