mirror of
https://github.com/RPCS3/glslang.git
synced 2024-12-05 01:37:07 +00:00
b3338b307f
git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@20703 e7fa87d3-cd2b-0410-9028-fcbf551c1848
13 lines
252 B
Bash
13 lines
252 B
Bash
#!/usr/bin/env bash
|
|
|
|
RUNCMD=../Build/Debug/glslang.exe
|
|
TARGETDIR=localout
|
|
BASEDIR=localbase
|
|
|
|
while read t; do
|
|
echo Running $t...
|
|
b=`basename $t`
|
|
./StandAlone -i $t > $TARGETDIR/$b.out
|
|
diff $BASEDIR/$b.out $TARGETDIR/$b.out
|
|
done < testlist
|