This is an automated email from the ASF dual-hosted git repository.
jbonofre pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/karaf.git
The following commit(s) were added to refs/heads/master by this push:
new c4c92ce Increase itest timeout to avoid issue on Jenkins
new bf0f5ca Merge pull request #934 from jbonofre/INCREASE_ITEST_TIMEOUT
c4c92ce is described below
commit c4c92cea022e177ea6dfed57d4ac2e488fae735f
Author: Jean-Baptiste Onofré <[email protected]>
AuthorDate: Sun Sep 8 15:54:22 2019 +0200
Increase itest timeout to avoid issue on Jenkins
---
.../src/main/java/org/apache/karaf/itests/KarafTestSupport.java | 4 ++++
1 file changed, 4 insertions(+)
diff --git
a/itests/common/src/main/java/org/apache/karaf/itests/KarafTestSupport.java
b/itests/common/src/main/java/org/apache/karaf/itests/KarafTestSupport.java
index 1ddf10c..a9c4a2e 100644
--- a/itests/common/src/main/java/org/apache/karaf/itests/KarafTestSupport.java
+++ b/itests/common/src/main/java/org/apache/karaf/itests/KarafTestSupport.java
@@ -58,6 +58,8 @@ import org.junit.runner.Description;
import org.junit.runners.model.Statement;
import org.ops4j.pax.exam.*;
+import org.ops4j.pax.exam.container.remote.RBCRemoteTargetOptions;
+import org.ops4j.pax.exam.container.remote.options.RBCLookupTimeoutOption;
import org.ops4j.pax.exam.karaf.container.internal.JavaVersionUtil;
import org.ops4j.pax.exam.karaf.options.KarafDistributionOption;
import org.ops4j.pax.exam.karaf.options.LogLevelOption.LogLevel;
@@ -254,6 +256,8 @@ public class KarafTestSupport {
KarafDistributionOption.configureConsole().ignoreLocalConsole(),
KarafDistributionOption.keepRuntimeFolder(),
KarafDistributionOption.logLevel(LogLevel.INFO),
+ CoreOptions.systemTimeout(360000),
+ RBCRemoteTargetOptions.waitForRBCFor(360000),
CoreOptions.mavenBundle().groupId("org.awaitility").artifactId("awaitility").versionAsInProject(),
CoreOptions.mavenBundle().groupId("org.apache.servicemix.bundles").artifactId("org.apache.servicemix.bundles.hamcrest").versionAsInProject(),
CoreOptions.mavenBundle().groupId("org.apache.karaf.itests").artifactId("common").versionAsInProject(),