Skip to content

Instantly share code, notes, and snippets.

@alexgirao
Created January 13, 2014 00:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexgirao/8392632 to your computer and use it in GitHub Desktop.
Save alexgirao/8392632 to your computer and use it in GitHub Desktop.
--- a/subprojects/integ-test/src/integTest/groovy/org/gradle/integtests/ParallelProjectExecutionIntegrationTest.groovy
+++ b/subprojects/integ-test/src/integTest/groovy/org/gradle/integtests/ParallelProjectExecutionIntegrationTest.groovy
@@ -44,6 +44,7 @@ allprojects {
}
"""
executer.withArgument('--parallel')
+ executer.withArgument('--parallel-threads=10')
executer.withArgument('--info')
}
--- a/subprojects/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/BlockingHttpServer.groovy
+++ b/subprojects/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/BlockingHttpServer.groovy
@@ -106,7 +106,7 @@ server state: ${server.dump()}
try {
def path = target.replaceFirst('/', '')
if (!pending.remove(path)) {
- // Unexpected call - let it travel on
+ // Unexpected call - let it travel on to the next handler
return
}
received.add(path)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment