git @ Cat's Eye Technologies Arboretuum / master test.sh
master

Tree @master (Download .tar.gz)

test.sh @masterraw · history · blame

#!/bin/sh

cd src
csi -q -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