summaryrefslogtreecommitdiffstats
path: root/pts/test-resources/java-scimark2
diff options
context:
space:
mode:
authorMichael Larabel <michael@phx-laptop.(none)>2008-10-09 20:51:14 -0400
committerMichael Larabel <michael@phx-laptop.(none)>2008-10-09 20:51:14 -0400
commitce4a0ad557845bdde967998025c27ff17ee516b7 (patch)
tree3eb419357adb75a5224b56f50a498ec23d3eb904 /pts/test-resources/java-scimark2
parent5eeedd8b26e69d59729ef83f2fc834552a407fb5 (diff)
downloadphoronix-test-suite-upstream-ce4a0ad557845bdde967998025c27ff17ee516b7.tar.gz
phoronix-test-suite-upstream-ce4a0ad557845bdde967998025c27ff17ee516b7.tar.xz
phoronix-test-suite-upstream-ce4a0ad557845bdde967998025c27ff17ee516b7.zip
pts: More moving to $LOG_FILE usage
Diffstat (limited to 'pts/test-resources/java-scimark2')
-rwxr-xr-xpts/test-resources/java-scimark2/install.sh14
1 files changed, 7 insertions, 7 deletions
diff --git a/pts/test-resources/java-scimark2/install.sh b/pts/test-resources/java-scimark2/install.sh
index 285e3c7..2ffa215 100755
--- a/pts/test-resources/java-scimark2/install.sh
+++ b/pts/test-resources/java-scimark2/install.sh
@@ -5,26 +5,26 @@ unzip -o scimark2lib.zip
echo "#!/bin/sh
rm -f *.result
-java jnt.scimark2.commandline > \$THIS_RUN_TIME.result
+java jnt.scimark2.commandline > \$LOG_FILE
case \"\$1\" in
\"TEST_COMPOSITE\")
- cat \$THIS_RUN_TIME.result | grep \"Composite Score\"
+ cat \$LOG_FILE | grep \"Composite Score\"
;;
\"TEST_FFT\")
- cat \$THIS_RUN_TIME.result | grep \"FFT (1024)\"
+ cat \$LOG_FILE | grep \"FFT (1024)\"
;;
\"TEST_SOR\")
- cat \$THIS_RUN_TIME.result | grep \"SOR (100x100)\"
+ cat \$LOG_FILE | grep \"SOR (100x100)\"
;;
\"TEST_MONTE\")
- cat \$THIS_RUN_TIME.result | grep \"Monte Carlo\"
+ cat \$LOG_FILE | grep \"Monte Carlo\"
;;
\"TEST_SPARSE\")
- cat \$THIS_RUN_TIME.result | grep \"Sparse matmult\"
+ cat \$LOG_FILE | grep \"Sparse matmult\"
;;
\"TEST_DENSE\")
- cat \$THIS_RUN_TIME.result | grep \"LU (100x100)\"
+ cat \$LOG_FILE | grep \"LU (100x100)\"
;;
esac" > java-scimark2
chmod +x java-scimark2