diff --git a/.github/workflows/regression-reusable-suite.yml b/.github/workflows/regression-reusable-suite.yml index 677cd35a1aa2..e9b82cf20166 100644 --- a/.github/workflows/regression-reusable-suite.yml +++ b/.github/workflows/regression-reusable-suite.yml @@ -87,6 +87,7 @@ jobs: --collect-service-logs --output classic --parallel 1 + --cicd --log raw.log --with-analyzer artifact_paths: | diff --git a/docker/test/stateless/stress_tests.lib b/docker/test/stateless/stress_tests.lib index 51aa299f7a6d..608410e4907e 100644 --- a/docker/test/stateless/stress_tests.lib +++ b/docker/test/stateless/stress_tests.lib @@ -285,7 +285,7 @@ function check_logs_for_critical_errors() # Remove file fatal_messages.txt if it's empty [ -s /test_output/fatal_messages.txt ] || rm /test_output/fatal_messages.txt - rg -Faz "########################################" /test_output/* > /dev/null \ + rg -Faz "########################################" /test_output/* | rg -v "rg -Fa" > /dev/null \ && echo -e "Killed by signal (output files)$FAIL" >> /test_output/test_results.tsv function get_gdb_log_context() diff --git a/tests/broken_tests.json b/tests/broken_tests.json index 4093b27853da..4958c2bc7a50 100644 --- a/tests/broken_tests.json +++ b/tests/broken_tests.json @@ -49,5 +49,10 @@ "02098_hashed_array_dictionary_simple_key": { "reason": "KNOWN: timeout with sanitizer", "check_types": ["tsan", "asan", "msan", "ubsan"] + }, + "test_overcommit_tracker/test.py::test_user_overcommit": { + "reason": "INVESTIGATE - AssertionError on tsan", + "message": "AssertionError: all tasks are killed", + "check_types": ["tsan"] } } \ No newline at end of file diff --git a/tests/ci/ci_config.py b/tests/ci/ci_config.py index 30e19982e46b..0cdbb78e420b 100644 --- a/tests/ci/ci_config.py +++ b/tests/ci/ci_config.py @@ -430,9 +430,9 @@ class CI: ), JobNames.INTEGRATION_TEST: CommonJobConfigs.INTEGRATION_TEST.with_properties( required_builds=[BuildNames.PACKAGE_RELEASE], - num_batches=4, + num_batches=6, # release_only=True, - timeout=12000, # the job timed out with default value (7200) + timeout=4 * 3600, # the job timed out with default value (7200) ), JobNames.INTEGRATION_TEST_FLAKY: CommonJobConfigs.INTEGRATION_TEST.with_properties( required_builds=[BuildNames.PACKAGE_ASAN],