comparison runscimark.sh @ 2553:b21123d5a693

test scripts: use JDK7 env var, check all required vars
author Lukas Stadler <lukas.stadler@jku.at>
date Thu, 28 Apr 2011 13:17:23 +0200
parents 8d88c9ac9247
children 092e628ddd5d
comparison
equal deleted inserted replaced
2552:b122bed75f04 2553:b21123d5a693
3 echo "JDK7 is not defined." 3 echo "JDK7 is not defined."
4 exit 1; 4 exit 1;
5 fi 5 fi
6 if [ -z "${MAXINE}" ]; then 6 if [ -z "${MAXINE}" ]; then
7 echo "MAXINE is not defined. It must point to a maxine repository directory." 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."
8 exit 1; 12 exit 1;
9 fi 13 fi
10 if [ -z "${SCIMARK}" ]; then 14 if [ -z "${SCIMARK}" ]; then
11 echo "SCIMARK is not defined. It must point to a SciMark benchmark directory." 15 echo "SCIMARK is not defined. It must point to a SciMark benchmark directory."
12 exit 1; 16 exit 1;