Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I can't get any more than two threads executing at once using the Maven + Surefire combo. I've experimented with a number of combinations of threadCount, perCoreThreadCount, and useUnlimitedThreads settings, but can never do better than two threads. See attached screenshot: there will be ~12 Firefox windows, but only two "driving" at one time.

enter image description here

My machine has 4 cores of 2.6 Ghz i7 in it, so it's not like I should be hitting a hardware limit yet.

Here's an example of one of the Surefire configurations:

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.7.2</version>
            <configuration>
                <includes>
                    <include>**/*Test*.*</include>
                </includes>
                <threadCount>10</threadCount>
                <perCoreThreadCount>true</perCoreThreadCount>
                <parallel>classes</parallel>
            </configuration>
        </plugin>

For my tests, I'm using Scala wrapped in a JUnit runner. Each test is in its own class. My JUnit is 4.10, Maven 3.04 I think.

share|improve this question
I don't think those options work on 2.7.2 of Surefire. Have you tried switching to the latest version? – Stephen Connolly Nov 12 '12 at 3:01
What's the latest version? It seems our team is moving toward using ScalaTest runner, which has more effective (in our testing) parallel support. – Aaron Shaver Nov 13 '12 at 17:42
The latest version is always in the top RHS of the [plugin site][1]. Ie 2.12.4 [1]: maven.apache.org/surefire/maven-surefire-plugin – Stephen Connolly Nov 13 '12 at 20:26

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.