blob: c3e17467d1be1d57069e0d20c354523e056d2fcb [file] [log] [blame]
John Kessenichaab25142013-02-12 18:26:15 +00001#!/usr/bin/env bash
2
3RUNCMD=../Build/Debug/glslang.exe
4TARGETDIR=localout
5BASEDIR=localbase
6
7while read t; do
8 echo Running $t...
9 b=`basename $t`
10 ./StandAlone -i $t > $TARGETDIR/$b.out
11 diff $BASEDIR/$b.out $TARGETDIR/$b.out
12done < testlist