aboutsummaryrefslogtreecommitdiff
path: root/examples/tutch/run.sh
diff options
context:
space:
mode:
authorRyan Kavanagh <rak@debian.org>2018-09-13 13:18:07 -0400
committerRyan Kavanagh <rak@debian.org>2018-09-13 13:49:21 -0400
commit465fb70bdcb0acd7a13f8b06c821e9d7496e2603 (patch)
treeddb483f51474bf5d104806912a91a10bb10ca75d /examples/tutch/run.sh
parentImport autograder from 15-317 f17 (diff)
Imported tutch example
Diffstat (limited to '')
-rwxr-xr-xexamples/tutch/run.sh26
1 files changed, 26 insertions, 0 deletions
diff --git a/examples/tutch/run.sh b/examples/tutch/run.sh
new file mode 100755
index 0000000..ff313b2
--- /dev/null
+++ b/examples/tutch/run.sh
@@ -0,0 +1,26 @@
+#!/bin/sh
+
+abort () {
+ if [ "x$1" != "x" ]; then
+ echo "$1"
+ fi
+ printf "\n\n{\"scores\": {}}"
+ exit 0
+}
+
+tar -mxf autograde.tar || \
+ abort "Failed to extract autograder."
+
+[ -d handin ] || mkdir handin
+
+[ -f handin.tar ] || \
+ abort "Submission is expected to be at handin.tar. This file does not exist!"
+
+tar -xf handin.tar -C handin || \
+ abort "Failed to extract submission."
+
+ml-build sources.cm Main.main grader || \
+ abort "Failed to compile autograder. Please contact course staff."
+
+sml @SMLload grader.* || \
+ abort "SML autograder exited with error. Please contact course staff."