mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2024-12-29 16:29:40 +00:00
Test script fixes.
This commit is contained in:
parent
7101e680fc
commit
2b2aa1496a
3 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue