git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@24738 e7fa87d3-cd2b-0410-9028-fcbf551c1848
		
			
				
	
	
		
			62 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
TARGETDIR=localResults
 | 
						|
BASEDIR=baseResults
 | 
						|
EXE=./glslangValidator
 | 
						|
mkdir -p localResults
 | 
						|
 | 
						|
#
 | 
						|
# configuration file tests
 | 
						|
#
 | 
						|
echo running configuration file test
 | 
						|
$EXE -c > $TARGETDIR/test.conf
 | 
						|
diff -b $BASEDIR/test.conf $TARGETDIR/test.conf
 | 
						|
$EXE -i -l $TARGETDIR/test.conf specExamples.vert > $TARGETDIR/specExamples.vert.out
 | 
						|
diff -b $BASEDIR/specExamples.vert.out $TARGETDIR
 | 
						|
$EXE 100Limits.vert 100.conf >  $TARGETDIR/100LimitsConf.vert.out
 | 
						|
diff -b $BASEDIR/100LimitsConf.vert.out $TARGETDIR/100LimitsConf.vert.out
 | 
						|
 | 
						|
#
 | 
						|
# isolated compilation tests
 | 
						|
#
 | 
						|
while read t; do
 | 
						|
    echo Running $t...
 | 
						|
    b=`basename $t`
 | 
						|
    $EXE -i -l $t > $TARGETDIR/$b.out
 | 
						|
    diff -b $BASEDIR/$b.out $TARGETDIR/$b.out
 | 
						|
done < testlist
 | 
						|
 | 
						|
#
 | 
						|
# grouped shaders for bulk (faster) tests
 | 
						|
#
 | 
						|
function runBulkTest {
 | 
						|
    echo Running $*...
 | 
						|
    $EXE -i -l -t $* > $TARGETDIR/$1.out
 | 
						|
	diff -b $BASEDIR/$1.out $TARGETDIR/$1.out
 | 
						|
}
 | 
						|
 | 
						|
runBulkTest mains1.frag mains2.frag noMain1.geom noMain2.geom
 | 
						|
runBulkTest noMain.vert mains.frag
 | 
						|
runBulkTest link1.frag link2.frag link3.frag
 | 
						|
runBulkTest recurse1.vert recurse1.frag recurse2.frag
 | 
						|
runBulkTest 300link.frag
 | 
						|
runBulkTest 300link2.frag
 | 
						|
runBulkTest 300link3.frag
 | 
						|
runBulkTest empty.frag empty2.frag empty3.frag
 | 
						|
runBulkTest 150.tesc 150.tese 400.tesc 400.tese 410.tesc 420.tesc 420.tese
 | 
						|
 | 
						|
#
 | 
						|
# reflection tests
 | 
						|
#
 | 
						|
echo Running reflection...
 | 
						|
$EXE -l -q reflection.vert > $TARGETDIR/reflection.vert.out
 | 
						|
diff -b $BASEDIR/reflection.vert.out $TARGETDIR/reflection.vert.out
 | 
						|
 | 
						|
#
 | 
						|
# multi-threaded test
 | 
						|
#
 | 
						|
echo Comparing single thread to multithread for all tests in current directory...
 | 
						|
$EXE -i *.vert *.geom *.frag *.tes* *.comp > singleThread.out
 | 
						|
$EXE -i *.vert *.geom *.frag *.tes* *.comp -t > multiThread.out
 | 
						|
diff singleThread.out multiThread.out
 |