You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by jk...@apache.org on 2015/07/29 16:03:14 UTC

tapestry-5 git commit: still trying to debug CI builds

Repository: tapestry-5
Updated Branches:
  refs/heads/master f2a97f3cd -> f5ed86bd1


still trying to debug CI builds


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/f5ed86bd
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/f5ed86bd
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/f5ed86bd

Branch: refs/heads/master
Commit: f5ed86bd14afb22fedb26fd1587ffa483dbf43ca
Parents: f2a97f3
Author: Jochen Kemnade <jo...@eddyson.de>
Authored: Wed Jul 29 16:01:56 2015 +0200
Committer: Jochen Kemnade <jo...@eddyson.de>
Committed: Wed Jul 29 16:02:54 2015 +0200

----------------------------------------------------------------------
 gradlew                                                          | 2 +-
 .../main/java/org/apache/tapestry5/test/SeleniumTestCase.java    | 4 +++-
 2 files changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/f5ed86bd/gradlew
----------------------------------------------------------------------
diff --git a/gradlew b/gradlew
index 93ac847..33d4bb7 100755
--- a/gradlew
+++ b/gradlew
@@ -161,4 +161,4 @@ function splitJvmOpts() {
 eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS
 JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME"
 
-exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain -i "$@"
+exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain -d "$@"

http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/f5ed86bd/tapestry-test/src/main/java/org/apache/tapestry5/test/SeleniumTestCase.java
----------------------------------------------------------------------
diff --git a/tapestry-test/src/main/java/org/apache/tapestry5/test/SeleniumTestCase.java b/tapestry-test/src/main/java/org/apache/tapestry5/test/SeleniumTestCase.java
index 5b04def..97bcd18 100644
--- a/tapestry-test/src/main/java/org/apache/tapestry5/test/SeleniumTestCase.java
+++ b/tapestry-test/src/main/java/org/apache/tapestry5/test/SeleniumTestCase.java
@@ -186,7 +186,8 @@ public abstract class SeleniumTestCase extends Assert implements Selenium
                 "   contextPath: " + contextPath + sep +
                 String.format("         ports: %d / %d", port, sslPort) + sep +
                 "  browserStart: " + browserStartCommand + sep +
-                "       baseURL: " + baseURL);
+                "       baseURL: " + baseURL + sep +
+                "       tempDir: " + System.getProperty("java.io.tmpdir"));
 
         final Runnable stopWebServer = launchWebServer(container, webAppFolder, contextPath, port, sslPort);
 
@@ -199,6 +200,7 @@ public abstract class SeleniumTestCase extends Assert implements Selenium
             seleniumServer.getConfiguration().setFirefoxProfileTemplate(ffProfileTemplate);
         }
 
+        seleniumServer.getConfiguration().setDebugMode(true);
         seleniumServer.start();