summaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@typesafe.com>2013-03-25 23:45:01 -0700
committerAdriaan Moors <adriaan.moors@typesafe.com>2013-03-26 00:23:38 -0700
commit88b7a7241484657f77e38d8f788255966f14c709 (patch)
tree2a99e7b76db1988acb466a365b040f48ec56b569 /build.xml
parentac1a0f02de90688b011454e552cecc7805d88f4e (diff)
downloadscala-88b7a7241484657f77e38d8f788255966f14c709.tar.gz
scala-88b7a7241484657f77e38d8f788255966f14c709.tar.bz2
scala-88b7a7241484657f77e38d8f788255966f14c709.zip
Preparation for faster PR validation
Added starr.number, so that `ant -propertyfile starr.number -Dlocker.skip=1` works across branches. Introduced target `test.core`, which skips `test.stability`, since that requires `locker == quick`, whereas `locker == starr` with the above settings. (It's interesting to see for which files it fails when that assumption is broken.) Stability will still be tested on a nightly basis. It's rarely broken.
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml5
1 files changed, 4 insertions, 1 deletions
diff --git a/build.xml b/build.xml
index ae59602962..ec8c3a362c 100644
--- a/build.xml
+++ b/build.xml
@@ -1422,7 +1422,10 @@ targets exercised:
</partest>
</target>
- <target name="test.done" depends="test.osgi, test.sbt, test.bc, test.interactive, test.continuations.suite, test.suite, test.scaladoc, test.stability"/>
+ <!-- for use in PR validation, where stability is rarely broken, so we're going to use starr for locker,
+ and skip test.stability (which requires locker == quick) -->
+ <target name="test.core" depends="test.osgi, test.sbt, test.bc, test.interactive, test.continuations.suite, test.suite, test.scaladoc"/>
+ <target name="test.done" depends="test.core, test.stability"/>
<!-- ===========================================================================