You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
429 B
13 lines
429 B
#!/bin/bash
|
|
|
|
FILENAME=$1
|
|
|
|
if [ -z "$1" ] ; then
|
|
echo "Running all test cases. Usage for individual test cases: test.sh FILENAME (inside src/test/data/pa1/sample/ folder)"
|
|
java -cp "chocopy-ref.jar:target/assignment.jar" chocopy.ChocoPy --pass=s --test --dir src/test/data/pa1/sample/
|
|
exit 1
|
|
fi
|
|
|
|
java -cp "chocopy-ref.jar:target/assignment.jar" chocopy.ChocoPy \
|
|
--pass=s --test src/test/data/pa1/sample/${FILENAME}
|