mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2025-01-01 09:49:45 +00:00
Fix run_tests to not leave behind .off file.
This commit is contained in:
parent
387232e8dc
commit
6c282b07a9
1 changed files with 2 additions and 1 deletions
|
@ -4,6 +4,7 @@ OPENSCAD=/Applications/OpenSCAD.app/Contents/MacOS/OpenSCAD
|
|||
|
||||
for testscript in tests/test_*.scad ; do
|
||||
repname="$(basename $testscript|sed 's/^test_//')"
|
||||
${OPENSCAD} -o .off --hardwarnings --check-parameters true --check-parameter-ranges true $testscript 2>&1 && echo "$repname: PASS" || echo -e "$repname: FAIL!\n"
|
||||
${OPENSCAD} -o out.echo --hardwarnings --check-parameters true --check-parameter-ranges true $testscript 2>&1 && echo "$repname: PASS" || echo -e "$repname: FAIL!\n"
|
||||
rm -f out.echo
|
||||
done
|
||||
|
||||
|
|
Loading…
Reference in a new issue