diff --git a/.gitlab/lava/corstone1000-mps3/ptest.yml.j2 b/.gitlab/lava/corstone1000-mps3/ptest.yml.j2 index b45251e25472faf31a352035522d6a8ff8146a95..b2bc074fdc1b1eef10e21e2af5f5b9dcaa7fba36 100644 --- a/.gitlab/lava/corstone1000-mps3/ptest.yml.j2 +++ b/.gitlab/lava/corstone1000-mps3/ptest.yml.j2 @@ -11,7 +11,7 @@ job_name: {{ CI_JOB_NAME }} timeouts: job: {% if should_run %} - minutes: 360 + minutes: 460 {% else %} minutes: 270 {% endif %} @@ -158,7 +158,7 @@ actions: namespace: secondary_media timeout: {% if should_run %} - minutes: 75 + minutes: 175 {% else %} minutes: 15 {% endif %} @@ -178,7 +178,7 @@ actions: - lava-test-case cassini-integration-tests --shell "sudo -HEnu test ptest-runner -t 180 container-engine-integration-tests" - lava-test-case cassini-integration-tests --shell "sudo -HEnu test ptest-runner -t 180 k3s-integration-tests" {% if should_run %} - - lava-test-case cassini-integration-tests --shell "sudo -HEnu test ptest-runner -t 1800 parsec-simple-e2e-tests" + - lava-test-case cassini-integration-tests --shell "sudo -HEnu test ptest-runner -t 5400 parsec-simple-e2e-tests" {% endif %} - jfrog-cli config add artifactory-aws --interactive=false --artifactory-url={{ ARTIFACTORY_AWS_URL }} --user={{ ARTIFACTORY_USER }} --password={{ ARTIFACTORY_PASS }}; - | diff --git a/.gitlab/lava/n1sdp/ptest.yml.j2 b/.gitlab/lava/n1sdp/ptest.yml.j2 index ad9b42b56abe10d17fbfcf28c3aeed2505d70062..c2d2fd1a7133fd254f9970f68c4eea6b279ecccf 100644 --- a/.gitlab/lava/n1sdp/ptest.yml.j2 +++ b/.gitlab/lava/n1sdp/ptest.yml.j2 @@ -11,7 +11,7 @@ job_name: {{ CI_JOB_NAME }} timeouts: job: {% if should_run %} - minutes: 130 + minutes: 200 {% else %} minutes: 80 {% endif %} @@ -191,7 +191,7 @@ actions: namespace: secondary_media timeout: {% if should_run %} - minutes: 45 + minutes: 110 {% else %} minutes: 15 {% endif %} @@ -211,7 +211,7 @@ actions: - lava-test-case cassini-integration-tests --shell "sudo -HEnu test ptest-runner -t 180 container-engine-integration-tests" - lava-test-case cassini-integration-tests --shell "sudo -HEnu test ptest-runner -t 180 k3s-integration-tests" {% if should_run %} - - lava-test-case cassini-integration-tests --shell "sudo -HEnu test ptest-runner -t 1800 parsec-simple-e2e-tests" + - lava-test-case cassini-integration-tests --shell "sudo -HEnu test ptest-runner -t 5400 parsec-simple-e2e-tests" {% endif %} - jfrog-cli config add artifactory-aws --interactive=false --artifactory-url={{ ARTIFACTORY_AWS_URL }} --user={{ ARTIFACTORY_USER }} --password={{ ARTIFACTORY_PASS }}; - | diff --git a/meta-cassini-bsp/meta-security/meta-parsec/recipes-parsec/parsec-service/files/0001-cassini-bsp-Enable-parse-service-to-use-TS.patch b/meta-cassini-bsp/meta-security/meta-parsec/recipes-parsec/parsec-service/files/0001-cassini-bsp-Enable-parse-service-to-use-TS.patch index ca12801a0fc588143b90d91ecf827755eb2b943b..7fd3bc1637a26769a6661725c744afb1e2aa2bd0 100644 --- a/meta-cassini-bsp/meta-security/meta-parsec/recipes-parsec/parsec-service/files/0001-cassini-bsp-Enable-parse-service-to-use-TS.patch +++ b/meta-cassini-bsp/meta-security/meta-parsec/recipes-parsec/parsec-service/files/0001-cassini-bsp-Enable-parse-service-to-use-TS.patch @@ -7,6 +7,7 @@ Update the default `config.toml` to use trusted service provider for parsec-service. Signed-off-by: Vikas Katariya +Signed-off-by: Gowtham Suresh Kumar --- config.toml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) @@ -38,7 +39,7 @@ index 9532f32..d65bdbe 100644 # (Required) Timeout of the read and write operations on the IPC channel. After the # timeout expires, the connection is dropped. -timeout = 200 # in milliseconds -+timeout = 600 # in milliseconds ++timeout = 3600000 # in milliseconds # Specify the Unix Domain Socket path. The path is fixed and should always be the default one for # clients to connect. However, it is useful to change it for tests. diff --git a/meta-cassini-tests/recipes-tests/runtime-integration-tests/parsec-simple-e2e-tests/parsec-simple-e2e-tests.bats b/meta-cassini-tests/recipes-tests/runtime-integration-tests/parsec-simple-e2e-tests/parsec-simple-e2e-tests.bats index b4cb1c965f7cf2360f52c1edecd789b80f95f4d7..d82ce1561427d75ea975488c74f64ec6834bb929 100644 --- a/meta-cassini-tests/recipes-tests/runtime-integration-tests/parsec-simple-e2e-tests/parsec-simple-e2e-tests.bats +++ b/meta-cassini-tests/recipes-tests/runtime-integration-tests/parsec-simple-e2e-tests/parsec-simple-e2e-tests.bats @@ -18,6 +18,7 @@ fi export TEST_LOG_FILE="${TEST_LOG_DIR}/parsec-simple-e2e-tests.log" export TEST_STDERR_FILE="${TEST_LOG_DIR}/ps-stderr.log" export TEST_RUN_FILE="${TEST_RUNTIME_DIR}/parsec-simple-e2e-tests.pgid" +export PARSEC_TOOL="/usr/bin/parsec-tool -t 3600" export TEST_CLEAN_ENV="${PS_TEST_CLEAN_ENV:=1}" @@ -74,7 +75,8 @@ clean_test_environment() { } @test 'simple end to end tests for PARSEC service' { - + + # PARSEC_TOOL is used by parsec-cli-tests.sh internally _run /usr/bin/parsec-cli-tests.sh if [ "${status}" -ne 0 ]; then log "FAIL"