summaryrefslogtreecommitdiff
path: root/test/scalatest
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2007-06-13 12:28:07 +0000
committermichelou <michelou@epfl.ch>2007-06-13 12:28:07 +0000
commit2a52c9f3ab7b05d4be2f3138a61f065c3e3ac3af (patch)
treee7ae489c9832557e90f9cff5f00622d3f8b5f630 /test/scalatest
parent9934c835a73512776de69f1f6c45ccd017ee8e10 (diff)
downloadscala-2a52c9f3ab7b05d4be2f3138a61f065c3e3ac3af.tar.gz
scala-2a52c9f3ab7b05d4be2f3138a61f065c3e3ac3af.tar.bz2
scala-2a52c9f3ab7b05d4be2f3138a61f065c3e3ac3af.zip
incremented MinorVersion, deprecated All/AllRef...
incremented MinorVersion, deprecated All/AllRef, remove many type aliases
Diffstat (limited to 'test/scalatest')
-rwxr-xr-xtest/scalatest4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/scalatest b/test/scalatest
index 4dbac001ea..b5107ddc71 100755
--- a/test/scalatest
+++ b/test/scalatest
@@ -289,7 +289,7 @@ MSIL="msil"
EXE="exe"
# Tests the .NET backend.
test_run_msil() {
- assemblies=`get_os_pathlist ./predef.dll`;
+ assemblies=`get_os_pathlist $PREFIX/lib/predef.dll:$PREFIX/lib/scalaruntime.dll:$PREFIX/lib/mscorlib.dll`;
rm -f "$dstbase".$MSIL &&
rm -f "$dstbase".$EXE &&
@@ -304,7 +304,7 @@ test_run_msil() {
* )
ilasm /output:"$os_dstbase".$EXE "$os_dstbase".$MSIL \
> /dev/null &&
- mono "$dstbase.$EXE" "msil";;
+ env MONO_PATH="$PREFIX/lib" mono "$dstbase.$EXE" "msil";;
esac &&
rm -f "$dstbase".$EXE &&
rm -f "$dstbase".$MSIL;