Commit 84ea15f4 by John Kessenich

glslang tests: Add Success/Failed message to summarize results.

parent abde37f6
...@@ -81,4 +81,11 @@ $EXE -i *.vert *.geom *.frag *.tes* *.comp > singleThread.out ...@@ -81,4 +81,11 @@ $EXE -i *.vert *.geom *.frag *.tes* *.comp > singleThread.out
$EXE -i *.vert *.geom *.frag *.tes* *.comp -t > multiThread.out $EXE -i *.vert *.geom *.frag *.tes* *.comp -t > multiThread.out
diff singleThread.out multiThread.out || HASERROR=1 diff singleThread.out multiThread.out || HASERROR=1
if [ $HASERROR -eq 0 ]
then
echo Tests Succeeded.
else
echo Tests Failed.
fi
exit $HASERROR exit $HASERROR
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment