git @ Cat's Eye Technologies Treacle / f3f32b9
Add test driver script. Apparently, some tests aren't passing... Cat's Eye Technologies 9 years ago
1 changed file(s) with 16 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 #!/bin/sh
1
2 cd src
3 plt-r5rs tests.scm | tee test-output.txt
4 if grep -q FAILED test-output.txt; then
5 echo "FAILED"
6 rm test-output.txt
7 exit 1
8 else
9 echo "PASSED"
10 rm test-output.txt
11 exit 0
12 fi
13
14
15