summaryrefslogtreecommitdiff
path: root/test/scalatest
diff options
context:
space:
mode:
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;