This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 4e9e01746b375e014f4f3c517ff21da5bbd3949f Author: Nayana Thorat <[email protected]> AuthorDate: Tue Jun 14 19:43:27 2022 +0530 Update Jenkinsfile.s390x --- Jenkinsfile.s390x | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile.s390x b/Jenkinsfile.s390x index e643dbf6fc6..d0e709bc40a 100644 --- a/Jenkinsfile.s390x +++ b/Jenkinsfile.s390x @@ -22,8 +22,12 @@ def JDK_NAME = env.JDK_NAME ?: 'jdk_11_latest' def MAVEN_PARAMS = "-B -e -fae -V -Dnoassembly -Dmaven.compiler.fork=true -Dsurefire.rerunFailingTestsCount=2" def MAVEN_TEST_PARAMS = "-Dkafka.instance.type=local-strimzi-container" -// Below paramteres needed for core/camel-core module -def MAVEN_TEST_LIMIT_PARAMS = "-Djdk.xml.xpathExprGrpLimit=100 -Djdk.xml.xpathExprOpLimit=2000" +/* +Below parameters required for camel/core/camel-core module's test cases to pass +- xpathExprGrpLimit: limits the number of groups an Xpath expression can contain +- xpathExprOpLimit: limits the number of operators an Xpath expression can contain +*/ +def MAVEN_TEST_LIMIT_PARAMS = "-Djdk.xml.xpathExprGrpLimit=100 -Djdk.xml.xpathExprOpLimit=2000" pipeline {
