summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Dan Liew <daniel.liew@imperial.ac.uk>2014-05-11 16:28:26 +0100
committerGravatar Dan Liew <daniel.liew@imperial.ac.uk>2014-05-11 16:28:26 +0100
commit0d6a5e97caa95864f4510a4ce194016c8743519b (patch)
tree7ecf2d4591b6bff2dec86d3af3bc00398c47db0f
parentcd11f6d30926112f8171c0af1601d80c0e414292 (diff)
Remove old testing script. Probably not much use anyway, the executable
bit wasn't set on it.
-rw-r--r--Test/CompareAll22
1 files changed, 0 insertions, 22 deletions
diff --git a/Test/CompareAll b/Test/CompareAll
deleted file mode 100644
index 1dfebd87..00000000
--- a/Test/CompareAll
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/usr/bin/bash
-
-# ALL_TESTS=`cat alltests.txt | grep -E "^[[:alnum:]-]+\W+Use\W" | awk '{print $1}'`
-ALL_TESTS=`cat alltests.txt | grep -E "^[^[:space:]]+[[:space:]]+(Use|Long)[[:space:]]" | awk '{print $1}'`
-
-echo ---------- All tests ---------- > Answer-all
-for t in ${ALL_TESTS} ; do
- echo ====================================================================== >> Answer-all
- echo ======================================== $t >> Answer-all
- echo ====================================================================== >> Answer-all
- cat $t/Answer >> Answer-all
-done
-
-echo ---------- All tests ---------- > Output-all
-for t in ${ALL_TESTS} ; do
- echo ====================================================================== >> Output-all
- echo ======================================== $t >> Output-all
- echo ====================================================================== >> Output-all
- cat $t/Output >> Output-all
-done
-
-echo All answers collected in Answer-all and all outputs in Output-all