Split compat.scad out into errors.scad and common.scad

This commit is contained in:
Revar Desmera
2019-05-15 21:07:27 -07:00
parent b3c334a6af
commit 26d16a3187
8 changed files with 127 additions and 106 deletions

8
scripts/run_tests.sh Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
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
done