blob: 7ec9885aa0f16a638866b84444afb79b5ef807bd [file] [log] [blame]
John Kessenichaab25142013-02-12 18:26:15 +00001#!/usr/bin/env bash
2
John Kessenich4586dbd2013-08-05 15:52:03 +00003TARGETDIR=localResults
4BASEDIR=baseResults
John Kessenichaab25142013-02-12 18:26:15 +00005
6while read t; do
7 echo Running $t...
8 b=`basename $t`
John Kessenich41a59182013-08-04 23:51:37 +00009 ./glslangValidator.exe -i $t > $TARGETDIR/$b.out
John Kessenichaab25142013-02-12 18:26:15 +000010 diff $BASEDIR/$b.out $TARGETDIR/$b.out
John Kessenichb3338b32013-02-26 19:47:21 +000011done < testlist