summaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorMiles Sabin <miles@milessabin.com>2009-10-30 13:05:17 +0000
committerMiles Sabin <miles@milessabin.com>2009-10-30 13:05:17 +0000
commitacaad2bcfe6fbf1da3667551637225d905c7cdfd (patch)
treeead6efeb3f920aed169e522d47ef0bc395df6978 /build.xml
parent6f7723bea494da2616edc1877d2402d356787512 (diff)
downloadscala-acaad2bcfe6fbf1da3667551637225d905c7cdfd.tar.gz
scala-acaad2bcfe6fbf1da3667551637225d905c7cdfd.tar.bz2
scala-acaad2bcfe6fbf1da3667551637225d905c7cdfd.zip
Added -Ybuilder-debug:[none,simple,refined] opt...
Added -Ybuilder-debug:[none,simple,refined] option for testing the interactive build manager; added support for reporting comments during compilation; unbroke the test.positions build target.
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml10
1 files changed, 7 insertions, 3 deletions
diff --git a/build.xml b/build.xml
index 74bb34f054..51c610296d 100644
--- a/build.xml
+++ b/build.xml
@@ -1569,7 +1569,7 @@ FORWARDED TARGETS FOR NIGHTLY BUILDS
POSITIONS
============================================================================ -->
- <target name="test.positions" depends="pack.done">
+ <target name="test.positions" depends="quick.comp">
<antcall target="test.positions.tests.sub" inheritRefs="true">
<param name="test.tests.srcs" value="${test.dir}/files/positions"/>
</antcall>
@@ -1622,11 +1622,15 @@ POSITIONS
</if>
<scalacfork
destdir=""
- compilerpathref="pack.classpath"
- srcdir="${srcdir}"
+ compilerpathref="locker.classpath"
+ srcpath="${srcdir}"
params="-Xprint-pos -Yide-debug"
+ srcdir="${srcdir}"
jvmargs="${scalacfork.jvmargs}">
<include name="${srcs}"/>
+ <compilationpath>
+ <pathelement location="${build-quick.dir}/classes/library"/>
+ </compilationpath>
</scalacfork>
</target>