aboutsummaryrefslogtreecommitdiffstats
path: root/src/extra_tests/timing/testsuite.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/extra_tests/timing/testsuite.sh')
-rwxr-xr-xsrc/extra_tests/timing/testsuite.sh23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/extra_tests/timing/testsuite.sh b/src/extra_tests/timing/testsuite.sh
deleted file mode 100755
index 186624c46..000000000
--- a/src/extra_tests/timing/testsuite.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-
-cd timing-tests
-make
-./main
-
-zipdate=$(date +%d-%H-%M)
-zipfile="${zipdate}-results.zip"
-zip -r $zipfile results
-
-cd ..
-cd mona-timing-report
-
-for dir in ../timing-tests/results/*;
-do
- echo "Working in directory: " $dir
- for file in $dir/*;
- do
- echo "Creating report for: " $file
- java -jar ReportingTool.jar --inputFile=$file --name=$file --lowerBound=0.4 --upperBound=0.5
- rm $file
- done
-done