From: jjenista Date: Tue, 9 Nov 2010 17:50:52 +0000 (+0000) Subject: some more runr scripts and a little script to clean all benchmarks out X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=a22f453f8e46433656bf2409f5b92538d3033f0d;p=IRC.git some more runr scripts and a little script to clean all benchmarks out --- diff --git a/Robust/src/Benchmarks/oooJava/clean-all.sh b/Robust/src/Benchmarks/oooJava/clean-all.sh new file mode 100755 index 00000000..63c7f7eb --- /dev/null +++ b/Robust/src/Benchmarks/oooJava/clean-all.sh @@ -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 index 00000000..e398bb80 --- /dev/null +++ b/Robust/src/Benchmarks/oooJava/crypt/runr @@ -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 index 00000000..057ea4ce --- /dev/null +++ b/Robust/src/Benchmarks/oooJava/mergesort/runr @@ -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 index 00000000..c7559b16 --- /dev/null +++ b/Robust/src/Benchmarks/oooJava/monte/runr @@ -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 index 00000000..7a13f26a --- /dev/null +++ b/Robust/src/Benchmarks/oooJava/power/runr @@ -0,0 +1 @@ +time ./Powerr.bin \ No newline at end of file