comparison runscimark.sh @ 1452:9b22e3e5df8e

Solved an issue with unresolved field patching.
author Thomas Wuerthinger <wuerthinger@ssw.jku.at>
date Fri, 12 Nov 2010 18:04:27 +0100
parents 8cfe3537a0d3
children ef7761803480
comparison
equal deleted inserted replaced
1451:8c121f2190f8 1452:9b22e3e5df8e
9 fi 9 fi
10 if [ -z "${C1X}" ]; then 10 if [ -z "${C1X}" ]; then
11 echo "C1X is not defined. It must point to a c1x4hotspot directory." 11 echo "C1X is not defined. It must point to a c1x4hotspot directory."
12 exit 1; 12 exit 1;
13 fi 13 fi
14 for (( i = 1; i <= 4000; i++ )) ### Outer for loop ### 14 if [ -z "${SCIMARK}" ]; then
15 echo "SCIMARK is not defined. It must point to a SciMark benchmark directory."
16 exit 1;
17 fi
18 for (( i = 1; i <= 5000; i++ )) ### Outer for loop ###
15 do 19 do
16 echo "$i " 20 echo "$i "
17 ${JRE7}/bin/java -client -esa -ea -XX:+UseC1X -Xms32m -Xmx100m -Xbootclasspath/p:${MAXINE}/C1X/bin:${MAXINE}/CRI/bin:${MAXINE}/Base/bin:${MAXINE}/Assembler/bin:${C1X}/c1x4hotspotsrc/HotSpotVM/bin -Xbootclasspath/a:/home/tw/Benchmarks/scimark/ -classpath "${SCIMARK}" -C1X:+PrintTimers jnt.scimark2.commandline -large 21 ${JRE7}/bin/java -client -esa -ea -XX:+UseC1X -Xms32m -Xmx100m -Xbootclasspath/p:${MAXINE}/C1X/bin:${MAXINE}/CRI/bin:${MAXINE}/Base/bin:${MAXINE}/Assembler/bin:${C1X}/c1x4hotspotsrc/HotSpotVM/bin -Xbootclasspath/a:${SCIMARK} -C1X:+PrintTimers jnt.scimark2.commandline -large
18 done 22 done