You don't need to install jquery.
I just performed the same steps above on Windows XP and Java 1.6.0_16,
and builds fine for me.
The test name is not the one you reported though (Comet has only one "m").
I would retry to build, and if you get problems, please report here
the stack trace and what you see in the surefire report.
Thanks,
Simon
--
http://bordet.blogspot.com
---
Finally, no matter how good the architecture and design are,
to deliver bug-free software with optimal performance and reliability,
the implementation technique must be flawless. Victoria Livschitz
On Fri, Nov 6, 2009 at 16:38, steve xian <mon...@gmail.com> wrote:
> Attached Are the Surefire-reports From: mvn -e clean install
>
> For every run i delete the cometd folder and start from scratch
>
> I ran the mvn clean install again but the error is now different:
>
> run 1) TestAck(org.cometd.client.AckExtensionTest)
> run 2)
> testMaxNetworkDelay(org.cometd.javascript.jquery.CometdMaxNetworkDelayTest)
> run 3) TestAck(org.cometd.client.AckExtensionTest)
> run 4 with -e) surefire-reports attached again
I cannot reproduce.
Are you running the build on a very busy machine ?
Add this snippet to the cometd-javascript/jquery/pom.xml file, in the
<plugins> section:
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemProperties>
<property>
<name>org.eclipse.jetty.util.log.DEBUG</name>
<value>true</value>
</property>
</systemProperties>
</configuration>
</plugin>
This will enable Jetty server logging.
Filter the build running only the test case that fails, using:
mvn test -Dtest=CometdMaxNetworkDelayTest
and report what it's logged in the console.
On Fri, Nov 6, 2009 at 18:06, steve xian <mon...@gmail.com> wrote:
> Here are the steps i took for the following build
> 1) Delete cometd directory
> 2) svn co http://svn.cometd.com/trunk cometd/trunk
> 3) Add plugin to cometd/trunk/cometd-javascript/jquery/pom.xml file
> 4) mvn test -Dtest=CometdMaxNetworkDelayTest
> 5) results:
>
> Tests:
> There are no tests to run
>
> BUILD FAILURE
> No tests were executed (Set -DFailIfNoTests to ingnore this error)
Did you run the command from the cometd-javascript/jquery directory ?
> That error may have been caused by a internet connection hiccup
No.
> Any help with the TestAck failure or the jquery.CommetConnectionFailureTest
Use -Dtest=<here your test class name without package> to run different tests.
> It may be some software i'm missing or a misinstalled program?
No.
Let's see a full log output of a failing test first.