what processor have you implemented in your testbed platform?

how much ram on your testbed platform?

 

//With fork:

\ANT\apache-ant-1.8.0\apps\test-project>ant test
Buildfile: build.xml

test:
    [junit] Testsuite: SomeJUnitTest
    [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.203 sec
    [junit]
    [junit] Testsuite: SomeOtherJUnitTest
    [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.157 sec
    [junit]
    [junit] Testsuite: YetAnotherJUnitTest
    [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.157 sec
    [junit]

ActualTotal=.517s

BUILD SUCCESSFUL

Total time: 2 seconds

 

//without fork
\ANT\apache-ant-1.8.0\apps\test-project>ant test
Buildfile: build.xml

test:
    [junit] Testsuite: SomeJUnitTest
    [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.204 sec
    [junit]
    [junit] Testsuite: SomeOtherJUnitTest
    [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.156 sec
    [junit]
    [junit] Testsuite: YetAnotherJUnitTest
    [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.157 sec
    [junit]

ActualTotal=.517s

BUILD SUCCESSFUL
Total time: 1 second
E:\ANT\apache-ant-1.8.0\apps\test-project>without fork


apparently Total time display is inaccurate

 

?

Martin Gainty 
______________________________________________ 
Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité

Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger 
sein, so bitten wir hoeflich um eine Mitteilung. Jede unbefugte Weiterleitung 
oder Fertigung einer Kopie ist unzulaessig. Diese Nachricht dient lediglich dem 
Austausch von Informationen und entfaltet keine rechtliche Bindungswirkung. 
Aufgrund der leichten Manipulierbarkeit von E-Mails koennen wir keine Haftung 
fuer den Inhalt uebernehmen.

Ce message est confidentiel et peut être privilégié. Si vous n'êtes pas le 
destinataire prévu, nous te demandons avec bonté que pour satisfaire informez 
l'expéditeur. N'importe quelle diffusion non autorisée ou la copie de ceci est 
interdite. Ce message sert à l'information seulement et n'aura pas n'importe 
quel effet légalement obligatoire. Étant donné que les email peuvent facilement 
être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité 
pour le contenu fourni.



 

> Date: Wed, 21 Jul 2010 18:33:14 -0400
> Subject: junit tests running slower in 1.8 than in 1.7
> From: [email protected]
> To: [email protected]
> 
> My team has a unit test suite that ran in about a minute and a half
> with ant 1.6.5 (and 1.7.1), but now takes over 4 minutes with ant
> 1.8.1 (or 1.8.0).  Has anyone else had this problem?  The closest I've
> found via google is here, but it doesn't shed much light on the
> subject:
> 
> http://netbeans.org/bugzilla/show_bug.cgi?id=182263
> 
> We're running junit with fork=yes and forkmode=once.  With forking
> turned off, the tests run much faster, about the same as in 1.7.  (But
> we want the forking for other reasons.)
> 
> We're running under Windows, with jdk 1.6 and junit 4.5.
> 
> Have you seen this problem and worked around it?  Is it a known issue,
> or a problem with our configuration?
> 
> For the curious, I've created a simplified project here:
> http://web.mit.edu/lgdean/Public/test-project.zip .  I've also
> attached test results below, showing the difference (with much smaller
> numbers), and a snippet of the build.xml file.  Any advice would be
> appreciated.
> 
> Thanks,
> 
> Laura
> 
> 
> 
> C:\ant-trouble\my-project>ant -version
> Apache Ant version 1.7.1 compiled on June 27 2008
> C:\ant-trouble\my-project>ant test
> 
> test:
>     [junit] Testsuite: SomeJUnitTest
>     [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.042 sec
>     [junit]
>     [junit] Testsuite: SomeOtherJUnitTest
>     [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.032 sec
>     [junit]
>     [junit] Testsuite: YetAnotherJUnitTest
>     [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.034 sec
>     [junit]
> 
> 
> C:\ant-trouble\my-project>ant -version
> Apache Ant version 1.8.1 compiled on April 30 2010
> C:\ant-trouble\my-project>ant test
> 
> test:
>     [junit] Testsuite: SomeJUnitTest
>     [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.044 sec
>     [junit]
>     [junit] Testsuite: SomeOtherJUnitTest
>     [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.122 sec
>     [junit]
>     [junit] Testsuite: YetAnotherJUnitTest
>     [junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.108 sec
>     [junit]
> 
> 
> <target name="test">
> <junit fork="yes" forkmode="once">
> <formatter type="brief" usefile="false"/>
> <classpath> [...] </classpath>
> <batchtest>
> <fileset dir=".">
> <include name="**/*Test.java"/>
> </fileset>
> </batchtest>
> </junit>
> </target>
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
> 
                                          
_________________________________________________________________
Hotmail is redefining busy with tools for the New Busy. Get more from your 
inbox.
http://www.windowslive.com/campaign/thenewbusy?ocid=PID28326::T:WLMTAGL:ON:WL:en-US:WM_HMP:042010_2

Reply via email to