summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2008-01-08 14:56:07 +0000
committermichelou <michelou@epfl.ch>2008-01-08 14:56:07 +0000
commit80f280c545b8faffe8103faa721039d1a26a9996 (patch)
treeee5dd0dcdbfd0111ad46ba2d3ab605b3d9659f4b /test
parentf95bfb97f4e980f81fee33da57f9fb9fe6eb5264 (diff)
downloadscala-80f280c545b8faffe8103faa721039d1a26a9996.tar.gz
scala-80f280c545b8faffe8103faa721039d1a26a9996.tar.bz2
scala-80f280c545b8faffe8103faa721039d1a26a9996.zip
inverted logic when setting FLAGS
Diffstat (limited to 'test')
-rwxr-xr-xtest/scalatest4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/scalatest b/test/scalatest
index 5d819a2b1c..b0e2048594 100755
--- a/test/scalatest
+++ b/test/scalatest
@@ -753,8 +753,8 @@ while [ $# -gt 0 ]; do
esac;
done;
-if [ "$JAVA5" = "true" -a "$TEST_TYPE" != "msil" ]; then
- FLAGS="$FLAGS -target:jvm-1.5"
+if [ "$JAVA5" = "false" -o "$TEST_TYPE" = "msil" ]; then
+ FLAGS="$FLAGS -target:jvm-1.4";
fi;
if [ -z "$ERRORS" ]; then