Add bash script for running through all tests.


git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@20552 e7fa87d3-cd2b-0410-9028-fcbf551c1848
diff --git a/Test/runtests b/Test/runtests
new file mode 100644
index 0000000..c3e1746
--- /dev/null
+++ b/Test/runtests
@@ -0,0 +1,12 @@
+#!/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