glslang/Test/runtests
2013-02-26 19:47:21 +00:00

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