summaryrefslogtreecommitdiff
path: root/test/scalatest
diff options
context:
space:
mode:
authorPhilipp Haller <hallerp@gmail.com>2008-02-29 22:23:50 +0000
committerPhilipp Haller <hallerp@gmail.com>2008-02-29 22:23:50 +0000
commitca2cc573acac4d97fa16cefea1cf72bf9ac0aaf4 (patch)
tree8eaaf2c2330464489d1162a51c1c46fd6993738f /test/scalatest
parent6473f2d85174e7dff2ecff350dc31c84b0dfb137 (diff)
downloadscala-ca2cc573acac4d97fa16cefea1cf72bf9ac0aaf4.tar.gz
scala-ca2cc573acac4d97fa16cefea1cf72bf9ac0aaf4.tar.bz2
scala-ca2cc573acac4d97fa16cefea1cf72bf9ac0aaf4.zip
Fixed commit test (which breaks partest res tes...
Fixed commit test (which breaks partest res tests again)
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 2d95aa4df6..663a55b891 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 . "$@"; );
- (cat "$srcdir/$testname".res | $SCALAC -d "$os_dstbase".obj -Xresident -sourcepath "$srcdir" "$@"; );
+ (cd "$srcdir" && cat "$testname".res | $SCALAC -d "$os_dstbase".obj -Xresident -sourcepath . "$@"; );
+ #(cat "$srcdir/$testname".res | $SCALAC -d "$os_dstbase".obj -Xresident -sourcepath "$srcdir" "$@"; );
rm -rf "$dstbase".obj;
}