Skip to content
Snippets Groups Projects
Commit 90ae1b48 authored by toole1's avatar toole1
Browse files

no need for regression test in monad release folder

git-svn-id: https://subversion.cs.illinois.edu/svn/cs225@4586 6fbd10e7-183d-0410-a318-cb416676e4f2
parent b96ada1d
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
testcases="mp1 lab02 lab03 lab04 lab06 lab07 lab10 lab12"
#make
for assign in $testcases
do
./monad $assign --newtests --solution --noupdate --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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment