summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2007-04-18 15:50:44 +0000
committermichelou <michelou@epfl.ch>2007-04-18 15:50:44 +0000
commit5298d7cde068910c5ac1495704f6217cb024de73 (patch)
treedb6b71531ae4447ed54d950e615236bd37900e3a /test
parentd3529d9a6e03f8562138ecb5844ef9ff6bb66b06 (diff)
downloadscala-5298d7cde068910c5ac1495704f6217cb024de73.tar.gz
scala-5298d7cde068910c5ac1495704f6217cb024de73.tar.bz2
scala-5298d7cde068910c5ac1495704f6217cb024de73.zip
small fix in scalatest
Diffstat (limited to 'test')
-rwxr-xr-xtest/scalatest2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/scalatest b/test/scalatest
index 87dbb0d402..a4682568d8 100755
--- a/test/scalatest
+++ b/test/scalatest
@@ -332,7 +332,7 @@ test_run_shootout() {
$SCALAC -d "$os_dstbase".obj -cp "$JVM_EXT_CLASSPATH" "$@" "$dstbase".obj/test.scala &&
scala_lib=`get_os_filename "$SCALA_LIB"` &&
classpath=`get_os_pathlist "$os_dstbase".obj:$CLASSPATH` &&
- env JAVACMD="$JAVACMD $JAVA_OPTS" $SCALA -Dscalatest.cwd=$srcdir -Dscalatest.output=$os_dstbase.obj -Dscalatest.lib=$scala_lib -classpath $classpath:$JVM_EXT_CLASSPATH Test &&
+ env JAVACMD="$JAVACMD" JAVA_OPTS="$JAVA_OPTS" $SCALA -Dscalatest.cwd=$srcdir -Dscalatest.output=$os_dstbase.obj -Dscalatest.lib=$scala_lib -classpath $classpath:$JVM_EXT_CLASSPATH Test &&
rm -rf "$dstbase".obj;
}