summaryrefslogtreecommitdiff
path: root/test/scala2-nightly-test.scm
diff options
context:
space:
mode:
Diffstat (limited to 'test/scala2-nightly-test.scm')
-rwxr-xr-xtest/scala2-nightly-test.scm14
1 files changed, 9 insertions, 5 deletions
diff --git a/test/scala2-nightly-test.scm b/test/scala2-nightly-test.scm
index 461a30b1a0..f3c68341f0 100755
--- a/test/scala2-nightly-test.scm
+++ b/test/scala2-nightly-test.scm
@@ -83,17 +83,21 @@ exec scsh -e main -s "$0" "$@"
(with-cwd scala-svn-module-name
(start-section "Creating small Scala distribution")
(fail-if-error (run (ant pack)))
- (run (ant msil))
- (start-section "Testing Scala compiler")
- (fail-if-error
- (run (./test/scalatest --color=none
- --show-log))))
+ (run (ant msil)))
+
(start-section "Checking out Plugin module")
(fail-if-error (run (svn co ,plugin-svn-repository-dir
,plugin-svn-module-name)))
+
(with-cwd plugin-svn-module-name
(start-section "Creating Scala Eclipse plugin")
(fail-if-error (run (ant dist))))
+
+ (with-cwd scala-svn-module-name
+ (start-section "Testing Scala compiler")
+ (fail-if-error
+ (run (./test/scalatest --color=none
+ --show-log))))
#t
)
)