some more runr scripts and a little script to clean all benchmarks out
authorjjenista <jjenista>
Tue, 9 Nov 2010 17:50:52 +0000 (17:50 +0000)
committerjjenista <jjenista>
Tue, 9 Nov 2010 17:50:52 +0000 (17:50 +0000)
Robust/src/Benchmarks/oooJava/clean-all.sh [new file with mode: 0755]
Robust/src/Benchmarks/oooJava/crypt/runr [new file with mode: 0755]
Robust/src/Benchmarks/oooJava/mergesort/runr [new file with mode: 0755]
Robust/src/Benchmarks/oooJava/monte/runr [new file with mode: 0755]
Robust/src/Benchmarks/oooJava/power/runr [new file with mode: 0755]

diff --git a/Robust/src/Benchmarks/oooJava/clean-all.sh b/Robust/src/Benchmarks/oooJava/clean-all.sh
new file mode 100755 (executable)
index 0000000..63c7f7e
--- /dev/null
@@ -0,0 +1,18 @@
+#!/bin/bash
+
+# list all the files in the directory
+# containing benchmark directories
+for i in $( ls ); 
+do
+  # only operate on directories
+  if [ -d "$i" ] ; then
+    # ignore the CVS directory
+    if [ "$i" != "CVS" ] ; then
+      # go in, make clean, get out
+      cd $i
+      pwd
+      make clean
+      cd ..
+    fi
+  fi
+done
diff --git a/Robust/src/Benchmarks/oooJava/crypt/runr b/Robust/src/Benchmarks/oooJava/crypt/runr
new file mode 100755 (executable)
index 0000000..e398bb8
--- /dev/null
@@ -0,0 +1 @@
+time ./JGFCryptBenchr.bin
diff --git a/Robust/src/Benchmarks/oooJava/mergesort/runr b/Robust/src/Benchmarks/oooJava/mergesort/runr
new file mode 100755 (executable)
index 0000000..057ea4c
--- /dev/null
@@ -0,0 +1 @@
+time ./MergeSort4r.bin 134217728 32
diff --git a/Robust/src/Benchmarks/oooJava/monte/runr b/Robust/src/Benchmarks/oooJava/monte/runr
new file mode 100755 (executable)
index 0000000..c7559b1
--- /dev/null
@@ -0,0 +1 @@
+time ./JGFMonteCarloBenchr.bin
\ No newline at end of file
diff --git a/Robust/src/Benchmarks/oooJava/power/runr b/Robust/src/Benchmarks/oooJava/power/runr
new file mode 100755 (executable)
index 0000000..7a13f26
--- /dev/null
@@ -0,0 +1 @@
+time ./Powerr.bin
\ No newline at end of file