]> matita.cs.unibo.it Git - fireball-separation.git/blobdiff - ocaml/run
Run tests with: make run
[fireball-separation.git] / ocaml / run
diff --git a/ocaml/run b/ocaml/run
new file mode 100644 (file)
index 0000000..7a6436d
--- /dev/null
+++ b/ocaml/run
@@ -0,0 +1,22 @@
+#!/usr/bin/env bash
+
+file=`mktemp`
+
+echo
+echo "Running test. Log file: $file."
+echo
+
+trap 'echo' SIGINT
+
+if ( ./test4.out 2>&1 | tee $file | stdbuf -o0 grep -Po '(?<=measure=)[^ ]*' | stdbuf -o0 tr '\n' ' ')
+then {
+ rm $file
+ echo
+ echo 'Test succeeded'
+}
+else {
+ echo ''
+ echo 'Test failed or interrupted'
+ echo "Please have a look at log file: $file ."
+}
+fi