summaryrefslogtreecommitdiff
path: root/test/files/ant/test-build.xml
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2006-10-23 17:49:33 +0000
committermichelou <michelou@epfl.ch>2006-10-23 17:49:33 +0000
commitd6753d1eda95a94dc8f5fb67ada51e38f104916e (patch)
treebe8b48a5d03d9887b4325f2123d9fc4b8b032daf /test/files/ant/test-build.xml
parent54a3755e36a1e52ff367b0b27d6d27dc0578967c (diff)
downloadscala-d6753d1eda95a94dc8f5fb67ada51e38f104916e.tar.gz
scala-d6753d1eda95a94dc8f5fb67ada51e38f104916e.tar.bz2
scala-d6753d1eda95a94dc8f5fb67ada51e38f104916e.zip
separated constrs/defs tables for primitive typ...
separated constrs/defs tables for primitive types in DocGenerator.scala
Diffstat (limited to 'test/files/ant/test-build.xml')
-rw-r--r--test/files/ant/test-build.xml8
1 files changed, 5 insertions, 3 deletions
diff --git a/test/files/ant/test-build.xml b/test/files/ant/test-build.xml
index aae3503385..7d28eccb47 100644
--- a/test/files/ant/test-build.xml
+++ b/test/files/ant/test-build.xml
@@ -93,6 +93,8 @@ INITIALISATION
</fail>
<fail message="Scala library '${scala-compiler.lib}' is not available">
<condition><not><and>
+ <available classname="scala.tools.ant.Scalac"
+ classpath="${scala-compiler.lib}"/>
<available classname="scala.tools.nsc.Main"
classpath="${scala-compiler.lib}"/>
<available classname="scala.tools.util.StringOps"
@@ -131,9 +133,9 @@ BUILD
/>
<dirname property="log.dir" file="${build.dir}"/>
<replace
- file="${log.dir}/test-ant.log"
- token="${user.name}"
- value="USERNAME"
+ file="${log.dir}/${ant.project.name}-ant.log"
+ token="${log.dir}"
+ value="[...]/files/ant"
/>
</target>