Nonfunctional, infrastructure: Clean up Test directory droppings.

The multithreaded outputs in particular can be troublesome when searching.
This commit is contained in:
John Kessenich 2017-07-06 11:58:12 -06:00
parent 645fdaa7cf
commit 4b1a890ba1
2 changed files with 7 additions and 4 deletions

4
.gitignore vendored
View File

@ -6,8 +6,4 @@ tags
TAGS
build/
Test/localResults/
Test/multiThread.out
Test/singleThread.out
Test/vert.spv
Test/frag.spv
External/googletest

View File

@ -45,6 +45,11 @@ echo Comparing single thread to multithread for all tests in current directory..
$EXE -i -C *.vert *.geom *.frag *.tes* *.comp > singleThread.out
$EXE -i -C *.vert *.geom *.frag *.tes* *.comp -t > multiThread.out
diff singleThread.out multiThread.out || HASERROR=1
if [ $HASERROR -eq 0 ]
then
rm singleThread.out
rm multiThread.out
fi
#
# entry point renaming tests
@ -147,4 +152,6 @@ else
echo Tests Failed.
fi
rm -f comp.spv frag.spv geom.spv tesc.spv tese.spv vert.spv
exit $HASERROR