diff --git a/scripts/run_tests.sh b/scripts/run_tests.sh index bfd4101..323b622 100755 --- a/scripts/run_tests.sh +++ b/scripts/run_tests.sh @@ -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 diff --git a/tests/test_hull.scad b/tests/hull.scad similarity index 100% rename from tests/test_hull.scad rename to tests/hull.scad diff --git a/tests/test_polyhedra.scad b/tests/polyhedra.scad similarity index 100% rename from tests/test_polyhedra.scad rename to tests/polyhedra.scad