git @ Cat's Eye Technologies Treacle / rel_1_0_2014_0819 test.sh
rel_1_0_2014_0819

Tree @rel_1_0_2014_0819 (Download .tar.gz)

test.sh @rel_1_0_2014_0819raw · history · blame

#!/bin/sh

cd src
csi -b tests.scm > test-output.txt || exit 1
#huski tests.scm > test-output.txt || exit 1
#plt-r5rs tests.scm > test-output.txt || exit 1
cat test-output.txt
if grep -q FAILED test-output.txt; then
    echo "FAILED"
    rm test-output.txt
    exit 1
else
    echo "PASSED"
    rm test-output.txt
    exit 0
fi