Those paths don't exist as you listed them. However, these similar
paths did. Note:

build/results/maven_test/results/output.txt
Contents == Maven test run with 'Build Successful' at the end.

build/results/maven_test/results/report.txt
Contents ==
Failures: 0, errors: 0
-------------------------------------

Even though all of these indicated success, I looked in the
'build/results/maven_tests/results/reports' folder at the JUnit xml
files and found one failure.

/bt/build/results/maven_test/results/reports/TEST-org.apache.maven.project.injection.DefaultProfileInjectorTest.xml

I've attached the file. I'll have to dig in a bit more to see what's
going on with this test. Why is this so hidden?

-Nathan


On Dec 26, 2007 12:09 AM, Sean Qiu <[EMAIL PROTECTED]> wrote:
> It works for me and i cannot find the root problem according to your message
> pasted.
>
> Could you please check the content of
> <root>/build/maven_test/results/reports.txt?
> It will summarize the test results ant the failure can be found in
> <root>/build/maven_test/results/output.txt.
> The failure's detail is place in xml/<Testname>.xml.
>
> It may help to find out the actual cause that the build failed.
>
> 2007/12/25, Nathan Beyer <[EMAIL PROTECTED]>:
>
> >
> > That fix seems to be helping, but I'm back to the same error I was
> > seeing before with the maven_test.
> >
> >     [java]      [exec] [INFO] BUILD SUCCESSFUL
> >     [java]      [exec] [INFO]
> > ------------------------------------------------------------------------
> >     [java]      [exec] [INFO] Total time: 50 seconds
> >     [java]      [exec] [INFO] Finished at: Mon Dec 24 21:42:49 CST 2007
> >     [java]      [exec] [INFO] Final Memory: 32M/152M
> >     [java]      [exec] [INFO]
> > ------------------------------------------------------------------------
> >     [java]      [echo]
> > work.dir:/home/nathan/harmony/bt/build/checkouts/maven_test
> >     [java]
> >     [java] restore.maven.pom:
> >     [java]      [copy] Copying 1 file to
> > /home/nathan/harmony/bt/build/checkouts/maven_test/maven-2.0.7-src
> >     [java]
> >     [java] compose.report:
> >     [java]    [delete] Deleting directory
> > /home/nathan/harmony/bt/build/checkouts/maven_test/logs
> >     [java]    [delete] Deleting:
> > /home/nathan/harmony/bt/build/checkouts/maven_test/report.txt
> >     [java]     [mkdir] Created dir:
> > /home/nathan/harmony/bt/build/checkouts/maven_test/logs
> >     [java]      [copy] Copying 49 files to
> > /home/nathan/harmony/bt/build/checkouts/maven_test/logs
> >     [java]      [copy] Copying 49 files to
> > /home/nathan/harmony/bt/build/results/maven_test/results/reports
> >     [java]    [concat] No existing resources and no nested text, doing
> > nothing
> >     [java]    [concat] No existing resources and no nested text, doing
> > nothing
> >     [java]      [copy] Copying 2 files to
> > /home/nathan/harmony/bt/build/results/maven_test/results
> >     [java]     [mkdir] Created dir:
> > /home/nathan/harmony/bt/build/results/maven_test/20071224_0941
> >     [java]      [copy] Warning: Could not find file
> > /home/nathan/harmony/bt/build/checkouts/maven_test/tmpfile.results.txt
> > to copy.
> >     [java] [replaceregexp] The following file is missing:
> >
> > '/home/nathan/harmony/bt/build/checkouts/maven_test/tmpfile.results.failed.error.txt'
> >     [java]      [copy] Warning: Could not find file
> >
> > /home/nathan/harmony/bt/build/checkouts/maven_test/tmpfile.results.failed.error.txt
> > to copy.
> >     [java]    [length]
> >
> > /home/nathan/harmony/bt/build/checkouts/maven_test/tmpfile.results.failed.txt
> > does not exist
> >     [java]      [copy] Warning: Could not find file
> >
> > /home/nathan/harmony/bt/build/checkouts/maven_test/tmpfile.results.failed.error.txt
> > to copy.
> >     [java]    [length]
> >
> > /home/nathan/harmony/bt/build/checkouts/maven_test/tmpfile.results.error.txt
> > does not exist
> >     [java]    [concat]
> >
> > /home/nathan/harmony/bt/build/checkouts/maven_test/tmpfile.results.failed.error.txt
> > does not exist.
> >     [java]      [copy] Copying 51 files to
> > /home/nathan/harmony/bt/build/results/maven_test/20071224_0941
> >     [java]
> >     [java] check.status:
> >     [java]
> >     [java] BUILD FAILED
> >     [java] /home/nathan/harmony/bt/tests/maven_test/build.xml:311:
> > Maven run failed: there are test failures
> >     [java]
> >
> >
> >
> > On Dec 23, 2007 11:48 PM, Sean Qiu <[EMAIL PROTECTED]> wrote:
> > > Yes. The root of the problem is that the behavior of task
> > > *<xmlproperty>*is changed in  ANT
> > > 1.7.0.
> > >
> > > Loading parameters.xml [1] property file with ant, the value of "
> > > parameter.required.noupdate" is different between version 1.6.5 and
> > 1.7.0 of
> > > ANT. In the case of 1.6.5, value of the property is *unset *but *"" *in
> > > 1.7.0.
> > >
> > > So the expression in framework.xml [2] will always return false,It makes
> > > that the "*do-svn-update-bt*" unreachable and the script cannot find the
> > > tests directory before checking it out.
> > >
> > > I have reported a jira [3] and supplied the patch.
> > >
> > > 1. parameters.xml
> > > <parameters>
> > >     <required/>
> > >         <noupdate description="Turns off local BTI repository updates on
> > > 'install' and 'setup' stages."/>
> > >     </repository>
> > > </parameters>
> > >
> > > 2. framework.xml
> > >             <if>
> > >                  <and>
> > >                     <not><isset property="
> > > framework.parameters.repository.noupdate"/></not>
> > >                      <not><contains string="${
> > > framework.parameters.repository.awaited}"
> > >                                     substring="|${tmp.relative.path
> > > }|"/></not>
> > >                  </and>
> > >             <then>
> > >                 <do-svn-update-bt path="${tmp.relative.path}"/>
> > >             </then>
> > >             </if>
> > >
> > > 3.https://issues.apache.org/jira/browse/HARMONY-5337
> > >
> > > 2007/12/21, Stepan Mishura <[EMAIL PROTECTED]>:
> > >
> > > > On 12/21/07, Sean Qiu <[EMAIL PROTECTED]> wrote:
> > > > > It seems that <svn-update-bt 
> > > > > path="${test.sources.dir}/${suite.name}"/>
> > > > > cannot check out the tests.
> > > >
> > > > Do you mean fail with ANT 1.7? I assume it works OK with 1.6.5.
> > > >
> > > > -Stepan.
> > > >
> > > > > The gut adaptor has the same problem and fails for the same error.
> > > > >
> > > > > I will dive into this issues to find out a solution later.
> > > > >
> > > > > 2007/12/21, Sean Qiu <[EMAIL PROTECTED]>:
> > > > > >
> > > > > > "#>./buildtest.sh install" will call target update-framework[1] of
> > > > > > build.xml.
> > > > > > Update-framework only update the <root>/scripts and
> > <root>/adaptors in
> > > > > > BTI,
> > > > > > while many tests as well as configurations are in <root>/tests
> > > directory.
> > > > > > Missing <root>/tests cause the build error.
> > > > > >
> > > > > > The reason we do not update <root>/tests directly in install step
> > is
> > > if we
> > > > > > just want to run a single test suite,
> > > > > > it will be unnecessary to check out all of the tests, since it is
> > > > > > time-comsuming.
> > > > > >
> > > > > > So the "setup" target of adaptor of each test suite is supposed to
> > > check
> > > > > > out individual tests themselves
> > > > > > within <svn-update-bt path="${test.sources.dir}/${suite.name }"/>.
> > > > > > And it is missing in maven adaptor, so i guess it is my fault.
> > > > > >
> > > > > > Generally, i will using "svn co" rather than "svn co -N" to
> > develop a
> > > new
> > > > > > adaptor.
> > > > > > This will download the whole tests directly, so i overlook this
> > > problem.
> > > > > > I will supply a patch for maven test  as well as all the other
> > > adaptors i
> > > > > > raised.
> > > > > >
> > > > > > Thanks very much to point it out.
> > > > > >
> > > > > > 1. update-framework of build.xml
> > > > > >
> > > > > >     <target name="update-framework"
> > > > > >             unless="framework.parameters.repository.noupdate">
> > > > > >         <!-- do update of framework implementation and test suite
> > > > > >              integration scripts -->
> > > > > >         <exec executable="svn" dir="${ root.dir}"
> > failonerror="true">
> > > > > >             <arg line="update ${scripts.dir} ${adaptors.dir}"/>
> > > > > >         </exec>
> > > > > >     </target>
> > > > > >
> > > > > > 2007/12/21, Nathan Beyer < [EMAIL PROTECTED]>:
> > > > > > >
> > > > > > > The README doesn't say I need to checkout that folder and it's
> > very
> > > > > > > specific about the checkout command using the "-N" to NOT check
> > out
> > > > > > > any sub-folder. Is the documentation wrong? I'm specifically try
> > to
> > > > > > > get this thing to work out of the box because we need to get
> > > buildtest
> > > > > > > 2.0 out of permanent branch and back into the trunk.
> > > > > > >
> > > > > > > On my Windows machine, I switched to Ant 1.6.5 and ran the same
> > > > > > > commands and a lot more is happening now; it checked out the
> > > > > > > 'tests/maven_test' folder and began a build.
> > > > > > >
> > > > > > > -Nathan
> > > > > > >
> > > > > > > On Dec 20, 2007 9:46 PM, Sean Qiu <[EMAIL PROTECTED]> wrote:
> > > > > > > > I have tried this adaptor, it works fine here.
> > > > > > > >
> > > > > > > > And once i rename the <root>/tests/maven_tests to other name,
> > it
> > > will
> > > > > > > fail
> > > > > > > > with the same error message as you.
> > > > > > > > The reason should be that the adaptor cannot find this
> > directory.
> > > > > > > > So I guess you may have not checked out the directory of
> > > > > > > > <root>/tests/maven_test .
> > > > > > > >
> > > > > > > > Could you please check it out first and try again?
> > > > > > > >
> > > > > > > > 2007/12/21, Nathan Beyer <[EMAIL PROTECTED]>:
> > > > > > > >
> > > > > > > > >
> > > > > > > > > I'm having all sorts of issues with buildtest 2.0. Here's
> > what
> > > I'm
> > > > > > > > > running, is there anything that's out of whack?
> > > > > > > > >
> > > > > > > > > Ubuntu 7.10 on x86_64 (AMD dual core)
> > > > > > > > > Sun Java 1.6
> > > > > > > > > Ant 1.7
> > > > > > > > > SVN 1.4.4
> > > > > > > > >
> > > > > > > > > Windows XP on x86
> > > > > > > > > Sun Java 1.6
> > > > > > > > > MSVC 2003
> > > > > > > > > Ant 1.7
> > > > > > > > > SVN 1.4.5
> > > > > > > > >
> > > > > > > > > Here's what I'm doing, per the README [1].
> > > > > > > > >
> > > > > > > > > * svn checkout -N
> > > > > > > > >
> > > > > > >
> > >
> > https://svn.apache.org/repos/asf/harmony/enhanced/buildtest/branches/2.0/
> > > > > > > > > * Tweak the buildtest.sh to setup the environment variables
> > and
> > > then
> > > > > > > > > run these commands.
> > > > > > > > > * ./buildtest.sh install
> > > > > > > > > * ./buildtest.sh setup -Dtest.suites=
> > "classlib,drlvm,maven_test"
> > > > > > > > > * ./buildtest.sh run
> > > > > > > > >
> > > > > > > > > Here's the failure I get --
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > -install:
> > > > > > > > >      [echo]
> > > > > > > > >      [echo] --------
> > > > > > > > >      [echo] WARNING: Target setup of adaptor for Test Suite
> > > > > > > 'maven_test'
> > > > > > > > > FAILED
> > > > > > > > >      [echo] -------- with the following exception:
> > > > > > > > >      [echo] The following error occurred while executing
> > this
> > > line:
> > > > > > > > >      [echo]
> > /home/nathan/harmony/bti/scripts/framework.xml:1079:
> > > > > > > > > /home/nathan/harmony/bti/tests/maven_test is not a valid
> > > directory
> > > > > > > > >    [delete] Deleting:
> > > > > > > /home/nathan/harmony/bti/build/temp/null1764598389
> > > > > > > > >
> > > > > > > > > check-status:
> > > > > > > > >      [echo]
> > > > > > > > >      [echo] ------
> > > > > > > > >      [echo] ERROR: Setup of Test Suite 'maven_test' FAILED.
> > > > > > > > >      [echo] ------
> > > > > > > > >
> > > > > > > > > BUILD FAILED
> > > > > > > > >
> > > > > > > > > The same failure happened on windows; the paths were just a
> > bit
> > > > > > > different.
> > > > > > > > >
> > > > > > > > > I thought this was supposed to work out of the box.
> > > > > > > > >
> > > > > > > > > -Nathan
> > > > > > > > >
> > > > > > > > > [1]
> > > > > > > > >
> > > > > > >
> > >
> > https://svn.apache.org/repos/asf/harmony/enhanced/buildtest/branches/2.0/README.txt
> > > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > --
> > > > > > > > Sean Qiu
> > > > > > > > http://xiaoxia.turendui.com
> > > > > > > >
> > > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > --
> > > > > > Sean Qiu
> > > > > > http://xiaoxia.turendui.com
> > > > > >
> > > > >
> > > > >
> > > > >
> > > > > --
> > > > > Sean Qiu
> > > > > http://xiaoxia.turendui.com
> > > >
> > >
> > >
> > >
> > > --
> > >
> > > Sean Qiu
> > > http://xiaoxia.turendui.com
> > >
> >
>
>
>
> --
>
> Sean Qiu
> http://xiaoxia.turendui.com
>
<?xml version="1.0" encoding="UTF-8" ?>
<testsuite skipped="0" tests="6" failures="1" errors="0" name="org.apache.maven.project.injection.DefaultProfileInjectorTest" time="0.062">
  <properties>
    <property value="Apache Harmony" name="java.runtime.name"/>
    <property value="/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/bin/default:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/bin" name="sun.boot.library.path"/>
    <property value="11.2.0" name="java.vm.version"/>
    <property value="/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/bin/default:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/bin" name="vm.boot.library.path"/>
    <property value="/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/bin/default/kernel.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/bin/default/gc_gen.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/accessibility.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/annotation.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/applet.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/archive.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/auth.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/awt.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/beans.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/concurrent.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/crypto.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/imageio.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/instrument.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/jndi.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/lang-management.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/logging.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/luni.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/math.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/nio.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/nio_char.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/orb.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/prefs.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/print.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/regex.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/rmi.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/security.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/sound.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/sql.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/swing.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/text.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/x_mgt.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/x-net.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/xml.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/icu4j_3.8/icu4j-3_8.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/icu4j_3.8/icu4j-charsets-3_8.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/xalan-j_2.7.0/xalan.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/xerces_2.9.1/resolver.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/xerces_2.9.1/xercesImpl.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/xerces_2.9.1/xml-apis.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/mx4j_3.0.2/mx4j.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/mx4j_3.0.2/mx4j-remote.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/misc.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/yoko_M2-20070130/yoko.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/yoko_M2-20070130/yoko-core.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/yoko_M2-20070130/yoko-rmi-spec.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/yoko_M2-20070130/yoko-rmi-impl.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/bcel-5.2/bcel-5.2.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/pack200.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/antlr-2.7.5.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/vmmagic-20070207.jar" name="vm.boot.class.path"/>
    <property value="http://harmony.apache.org"; name="java.vendor.url"/>
    <property value="Apache Software Foundation" name="java.vm.vendor"/>
    <property value=":" name="path.separator"/>
    <property value="DRLVM" name="java.vm.name"/>
    <property value="US" name="user.country"/>
    <property value="/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/bin/default" name="org.apache.harmony.vm.vmdir"/>
    <property value="Java Virtual Machine Specification" name="java.vm.specification.name"/>
    <property value="/home/nathan/harmony/bt/build/checkouts/maven_test/maven-2.0.7-src/maven-project" name="user.dir"/>
    <property value="1.5.0" name="java.runtime.version"/>
    <property value="/home/nathan/harmony/bt/build/checkouts/maven_test/maven-2.0.7-src/maven-project" name="basedir"/>
    <property value="x86_64" name="os.arch"/>
    <property value="/tmp" name="java.io.tmpdir"/>
    <property value="
" name="line.separator"/>
    <property value="Sun Microsystems Inc." name="java.vm.specification.vendor"/>
    <property value="Linux" name="os.name"/>
    <property value="/tmp" name="java.tmpdir"/>
    <property value="/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/bin/:.:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/bin/default:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/bin/:/usr/lib/jvm/java-6-sun-1.6.0.03/jre/lib/amd64/server:/usr/lib/jvm/java-6-sun-1.6.0.03/jre/lib/amd64:/usr/lib/jvm/java-6-sun-1.6.0.03/jre/../lib/amd64" name="java.library.path"/>
    <property value="Java Platform API Specification" name="java.specification.name"/>
    <property value="50.0" name="java.class.version"/>
    <property value="java.util.prefs.FilePreferencesFactoryImpl" name="java.util.prefs.PreferencesFactory"/>
    <property value="2.6.22-14-generic" name="os.version"/>
    <property value="/home/nathan" name="user.home"/>
    <property value="America/Chicago
" name="user.timezone"/>
    <property value="8859_1" name="file.encoding"/>
    <property value="org.apache.xalan.xsltc.trax.TransformerFactoryImpl" name="javax.xml.transform.TransformerFactory"/>
    <property value="1.5" name="java.specification.version"/>
    <property value="nathan" name="user.name"/>
    <property value="/home/nathan/harmony/bt/build/libs/maven-2.0.7/repository/org/codehaus/plexus/plexus-archiver/1.0-alpha-7/plexus-archiver-1.0-alpha-7.jar:/home/nathan/harmony/bt/build/libs/maven-2.0.7/repository/org/apache/maven/surefire/surefire-booter/2.3.1/surefire-booter-2.3.1.jar:/home/nathan/harmony/bt/build/libs/maven-2.0.7/repository/org/codehaus/plexus/plexus-container-default/1.0-alpha-8/plexus-container-default-1.0-alpha-8.jar:/home/nathan/harmony/bt/build/libs/maven-2.0.7/repository/org/apache/maven/surefire/surefire-api/2.3.1/surefire-api-2.3.1.jar:/home/nathan/harmony/bt/build/libs/maven-2.0.7/repository/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar:/home/nathan/harmony/bt/build/libs/maven-2.0.7/repository/classworlds/classworlds/1.1-alpha-2/classworlds-1.1-alpha-2.jar:/home/nathan/harmony/bt/build/libs/maven-2.0.7/repository/commons-lang/commons-lang/2.1/commons-lang-2.1.jar:/home/nathan/harmony/bt/build/libs/maven-2.0.7/repository/junit/junit/3.8.1/junit-3.8.1.jar" name="java.class.path"/>
    <property value="1.0" name="java.vm.specification.version"/>
    <property value="/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre" name="java.home"/>
    <property value="en" name="user.language"/>
    <property value="Sun Microsystems Inc." name="java.specification.vendor"/>
    <property value="no info" name="java.vm.info"/>
    <property value="1.5.0" name="java.version"/>
    <property value="/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/ext" name="java.ext.dirs"/>
    <property value="/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/bin/default/kernel.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/bin/default/gc_gen.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/accessibility.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/annotation.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/applet.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/archive.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/auth.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/awt.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/beans.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/concurrent.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/crypto.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/imageio.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/instrument.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/jndi.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/lang-management.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/logging.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/luni.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/math.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/nio.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/nio_char.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/orb.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/prefs.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/print.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/regex.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/rmi.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/security.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/sound.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/sql.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/swing.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/text.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/x_mgt.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/x-net.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/xml.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/icu4j_3.8/icu4j-3_8.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/icu4j_3.8/icu4j-charsets-3_8.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/xalan-j_2.7.0/xalan.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/xerces_2.9.1/resolver.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/xerces_2.9.1/xercesImpl.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/xerces_2.9.1/xml-apis.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/mx4j_3.0.2/mx4j.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/mx4j_3.0.2/mx4j-remote.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/misc.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/yoko_M2-20070130/yoko.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/yoko_M2-20070130/yoko-core.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/yoko_M2-20070130/yoko-rmi-spec.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/yoko_M2-20070130/yoko-rmi-impl.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/bcel-5.2/bcel-5.2.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/pack200.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/antlr-2.7.5.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/vmmagic-20070207.jar" name="sun.boot.class.path"/>
    <property value="Apache Software Foundation" name="java.vendor"/>
    <property value="/home/nathan/harmony/bt/build/libs/maven-2.0.7/repository" name="localRepository"/>
    <property value="/" name="file.separator"/>
    <property value="client" name="java.compiler"/>
    <property value="/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/accessibility.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/annotation.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/applet.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/archive.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/auth.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/awt.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/beans.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/concurrent.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/crypto.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/imageio.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/instrument.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/jndi.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/lang-management.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/logging.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/luni.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/math.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/nio.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/nio_char.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/orb.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/prefs.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/print.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/regex.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/rmi.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/security.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/sound.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/sql.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/swing.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/text.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/x_mgt.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/x-net.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/xml.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/icu4j_3.8/icu4j-3_8.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/icu4j_3.8/icu4j-charsets-3_8.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/xalan-j_2.7.0/xalan.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/xerces_2.9.1/resolver.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/xerces_2.9.1/xercesImpl.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/xerces_2.9.1/xml-apis.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/mx4j_3.0.2/mx4j.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/mx4j_3.0.2/mx4j-remote.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/misc.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/yoko_M2-20070130/yoko.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/yoko_M2-20070130/yoko-core.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/yoko_M2-20070130/yoko-rmi-spec.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/yoko_M2-20070130/yoko-rmi-impl.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/bcel-5.2/bcel-5.2.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/pack200.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/antlr-2.7.5.jar:/home/nathan/harmony/bt/build/checkouts/drlvm/build/deploy/jdk/jre/lib/boot/vmmagic-20070207.jar" name="org.apache.harmony.boot.class.path"/>
  </properties>
  <testcase name="testShouldPreserveOrderingOfPluginsAfterProfileMerge" time="0.02"/>
  <testcase name="testProfilePluginConfigurationShouldOverrideCollidingModelPluginConfiguration" time="0.003"/>
  <testcase name="testModelConfigShouldPersistWhenPluginHasExecConfigs" time="0.003"/>
  <testcase name="testProfileRepositoryShouldOverrideModelRepository" time="0.001"/>
  <testcase name="testShouldPreserveModelModulesWhenProfileHasNone" time="0"/>
  <testcase name="testShouldPreserveOrderingOfProfileInjectedPluginExecutions" time="0.02">
    <failure message="expected:&amp;lt;z&amp;gt; but was:&amp;lt;y&amp;gt;" type="junit.framework.ComparisonFailure">junit.framework.ComparisonFailure: expected:&amp;lt;z&amp;gt; but was:&amp;lt;y&amp;gt;
	at junit.framework.Assert.assertEquals(Assert.java:81)
	at junit.framework.Assert.assertEquals(Assert.java:87)
	at org.apache.maven.project.injection.DefaultProfileInjectorTest.testShouldPreserveOrderingOfProfileInjectedPluginExecutions(DefaultProfileInjectorTest.java:368)
	at java.lang.reflect.VMReflection.invokeMethod(VMReflection.java)
	at java.lang.reflect.Method.invoke(Method.java:317)
	at junit.framework.TestCase.runTest(TestCase.java:154)
	at junit.framework.TestCase.runBare(TestCase.java:127)
	at junit.framework.TestResult$1.protect(TestResult.java:106)
	at junit.framework.TestResult.runProtected(TestResult.java:124)
	at junit.framework.TestResult.run(TestResult.java:109)
	at junit.framework.TestCase.run(TestCase.java:118)
	at junit.framework.TestSuite.runTest(TestSuite.java:208)
	at junit.framework.TestSuite.run(TestSuite.java:203)
	at java.lang.reflect.VMReflection.invokeMethod(VMReflection.java)
	at java.lang.reflect.Method.invoke(Method.java:317)
	at org.apache.maven.surefire.junit.JUnitTestSet.execute(JUnitTestSet.java:213)
	at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:138)
	at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:125)
	at org.apache.maven.surefire.Surefire.run(Surefire.java:132)
	at java.lang.reflect.VMReflection.invokeMethod(VMReflection.java)
	at java.lang.reflect.Method.invoke(Method.java:317)
	at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:308)
	at org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:879)
</failure>
  </testcase>
</testsuite>

Reply via email to