-
Régis Blanc authoredRégis Blanc authored
run-tests.sh 1.18 KiB
#!/bin/bash
base=./regression
nbtests=$(ls -l $base/{valid,invalid,error}/*.scala | wc -l)
nbsuccess=0
failedtests=""
for f in $base/valid/*.scala; do
echo -n "Running $f, expecting VALID, got: "
res=`./leon --xlang --noLuckyTests --timeout=10 --oneline "$f"`
echo $res | tr [a-z] [A-Z]
if [ $res = valid ]; then
nbsuccess=$((nbsuccess + 1))
else
failedtests="$failedtests $f"
fi
done
for f in $base/invalid/*.scala; do
echo -n "Running $f, expecting INVALID, got: "
res=`./leon --xlang --noLuckyTests --timeout=10 --oneline "$f"`
echo $res | tr [a-z] [A-Z]
if [ $res = invalid ]; then
nbsuccess=$((nbsuccess + 1))
else
failedtests="$failedtests $f"
fi
done
for f in $base/error/*.scala; do
echo -n "Running $f, expecting ERROR, got: "
res=`./leon --xlang --noLuckyTests --timeout=10 --oneline "$f"`
echo $res | tr [a-z] [A-Z]
if [ $res = error ]; then
nbsuccess=$((nbsuccess + 1))
else
failedtests="$failedtests $f"
fi
done
echo "$nbsuccess out of $nbtests tests were successful"
if [ $nbtests -eq $nbsuccess ]; then
echo "PASSED"
else
echo "ERROR. The following test did not run as expected:"
for f in $failedtests; do echo $f; done
fi