build.xml
branchxml-sax-and-dom-2
changeset 1263 24b6c30fbf71
parent 1262 52864f10883d
child 1266 4dfe5e86d509
     1.1 --- a/build.xml	Wed Jun 24 16:38:24 2009 +0200
     1.2 +++ b/build.xml	Wed Jun 24 17:29:29 2009 +0200
     1.3 @@ -373,6 +373,12 @@
     1.4          >
     1.5              <bootclasspath refid="boot"/>
     1.6          </javac>
     1.7 +        <javac srcdir="test/java/util/prefs/Preferences" destdir="${test.dir}"
     1.8 +            includeantruntime="false" includejavaruntime="false"
     1.9 +            debug="true" debuglevel="lines,vars,source"
    1.10 +        >
    1.11 +            <bootclasspath refid="boot"/>
    1.12 +        </javac>
    1.13  
    1.14          <java classname="XMLReadAndWriteTest" fork="true">
    1.15              <jvmarg value="-ea"/>
    1.16 @@ -381,6 +387,13 @@
    1.17                  <pathelement location="${test.dir}"/>
    1.18              </classpath>
    1.19          </java>
    1.20 +        <java classname="XMLPreferencesTest" fork="true">
    1.21 +            <jvmarg value="-ea"/>
    1.22 +            <classpath>
    1.23 +                <path refid="boot"/>
    1.24 +                <pathelement location="${test.dir}"/>
    1.25 +            </classpath>
    1.26 +        </java>
    1.27      </target>
    1.28  
    1.29      <!-- shared routine to compile one of the modules -->