comparison runavrora.sh @ 3037:5f417a4a944a

Make run* scripts executable, add method name in Bailout output
author Gilles Duboscq <gilles.duboscq@oracle.com>
date Mon, 20 Jun 2011 12:19:47 +0200
parents
children dc0065f8d9a5
comparison
equal deleted inserted replaced
3023:79165996a12d 3037:5f417a4a944a
1 #!/bin/bash
2 if [ -z "${JDK7}" ]; then
3 echo "JDK7 is not defined."
4 exit 1;
5 fi
6 if [ -z "${MAXINE}" ]; then
7 echo "MAXINE is not defined. It must point to a maxine repository directory."
8 exit 1;
9 fi
10 if [ -z "${GRAAL}" ]; then
11 echo "GRAAL is not defined. It must point to a maxine repository directory."
12 exit 1;
13 fi
14 if [ -z "${DACAPO}" ]; then
15 echo "DACAPO is not defined. It must point to a Dacapo benchmark directory."
16 exit 1;
17 fi
18 COMMAND="${JDK7G}/bin/java -client -d64 -graal -Xms1g -Xmx2g -esa -classpath ${DACAPO}/dacapo-9.12-bach.jar -XX:-GraalBailoutIsFatal -G:-QuietBailout $* Harness --preserve -n 5 avrora"
19 echo $COMMAND
20 $COMMAND
21 echo $COMMAND