-
toole1 authored
git-svn-id: https://subversion.cs.illinois.edu/svn/cs225@3364 6fbd10e7-183d-0410-a318-cb416676e4f2
toole1 authoredgit-svn-id: https://subversion.cs.illinois.edu/svn/cs225@3364 6fbd10e7-183d-0410-a318-cb416676e4f2
regression.sh 335 B
#!/bin/bash
testcases="mp1 lab02 lab03 lab04 lab06 lab07 lab10 lab12"
#make
for assign in $testcases
do
./monad $assign --newtests --solution --staff &>/dev/null
score=$?
if [ $score -lt 100 ] || [ $score -eq 255 ]
then
echo "FAILED: Testcase $assign failed with score of $score"
else
echo "passed: $assign: $score"
fi
done