summaryrefslogtreecommitdiff
path: root/test/scalatest
diff options
context:
space:
mode:
authorGilles Dubochet <gilles.dubochet@epfl.ch>2008-03-06 10:16:37 +0000
committerGilles Dubochet <gilles.dubochet@epfl.ch>2008-03-06 10:16:37 +0000
commitebd7d295f4bf003c9fbb8f1e2306adaf73463522 (patch)
tree2303f6752b1b780f966125782245f35e4bb9886b /test/scalatest
parent445cb840b937ee242e039b92ac6389d0e92f5739 (diff)
downloadscala-ebd7d295f4bf003c9fbb8f1e2306adaf73463522.tar.gz
scala-ebd7d295f4bf003c9fbb8f1e2306adaf73463522.tar.bz2
scala-ebd7d295f4bf003c9fbb8f1e2306adaf73463522.zip
SuperSABBUS runs the full test suite and is fas...
SuperSABBUS runs the full test suite and is faster. - Reorganised build for better dependencies. - Various improvements and fixes in build process' correction and ease-of-use. - Partest Ant task can now run resident tests. - Fixed some issues with Partest.
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 38bf934d94..ab823047f8 100755
--- a/test/scalatest
+++ b/test/scalatest
@@ -248,8 +248,8 @@ test_run_neg() {
test_run_res() {
rm -rf "$dstbase".obj &&
mkdir -p "$dstbase".obj &&
- #(cd "$srcdir" && cat "$testname".res | $SCALAC -d "$os_dstbase".obj -Xresident -sourcepath . "$@"; );
- (cd "$TESTROOT" && cat "$srcdir/$testname".res | $SCALAC -d "$os_dstbase".obj -Xresident -sourcepath "$srcdir" "$@"; );
+ (cd "$srcdir" && cat "$testname".res | $SCALAC -d "$os_dstbase".obj -Xresident -sourcepath . "$@"; );
+ #(cd "$TESTROOT" && cat "$srcdir/$testname".res | $SCALAC -d "$os_dstbase".obj -Xresident -sourcepath "$srcdir" "$@"; );
rm -rf "$dstbase".obj;
}