Test script fixes.

This commit is contained in:
Revar Desmera 2019-05-26 12:17:04 -07:00
parent 7101e680fc
commit 2b2aa1496a
3 changed files with 3 additions and 1 deletions

View file

@ -3,6 +3,8 @@
OPENSCAD=/Applications/OpenSCAD.app/Contents/MacOS/OpenSCAD
for testscript in tests/test_*.scad ; do
${OPENSCAD} -o .off --hardwarnings --check-parameters true --check-parameter-ranges true $testscript
echo -n "$testscript: "
${OPENSCAD} -o .off --hardwarnings --check-parameters true --check-parameter-ranges true $testscript >>/dev/null 2>&1
[ $? != 0 ] && echo "PASS" || echo "FAIL!"
done