summaryrefslogtreecommitdiff
path: root/test/scala2-nightly-test.scm
diff options
context:
space:
mode:
authorGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-03-13 12:24:34 +0000
committerGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-03-13 12:24:34 +0000
commit02c904f51dd0ce5d031066f41e24e52c0f942cfa (patch)
tree693395c6b56d50fcbad39a8341c2f5362c8da85d /test/scala2-nightly-test.scm
parente0f1c57dccff7e5349d47e6609559bd103fb4cde (diff)
downloadscala-02c904f51dd0ce5d031066f41e24e52c0f942cfa.tar.gz
scala-02c904f51dd0ce5d031066f41e24e52c0f942cfa.tar.bz2
scala-02c904f51dd0ce5d031066f41e24e52c0f942cfa.zip
Attempting to build the plugin before we run th...
Attempting to build the plugin before we run the tests, so that we don't wind up without a nightly plugin build just because of a minor test.
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
)
)