diff --git a/scripts/run_tests.sh b/scripts/run_tests.sh index ba76f73c..c435acb7 100755 --- a/scripts/run_tests.sh +++ b/scripts/run_tests.sh @@ -4,7 +4,15 @@ OPENSCAD=/Applications/OpenSCAD.app/Contents/MacOS/OpenSCAD for testscript in tests/test_*.scad ; do repname="$(basename $testscript|sed 's/^test_//')" - ${OPENSCAD} -o out.echo --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 + res=$(cat out.echo) + if [ "$res" = "" ] ; then + echo "$repname: PASS" + else + echo "$repname: FAIL!" + cat out.echo + echo + fi rm -f out.echo done diff --git a/version.scad b/version.scad index c9f894cc..cee131dc 100644 --- a/version.scad +++ b/version.scad @@ -8,7 +8,7 @@ ////////////////////////////////////////////////////////////////////// -BOSL_VERSION = [2,0,3]; +BOSL_VERSION = [2,0,4]; // Section: BOSL Library Version Functions