Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/regression-reusable-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ jobs:
--collect-service-logs
--output classic
--parallel 1
--cicd
--log raw.log
--with-analyzer
artifact_paths: |
Expand Down
2 changes: 1 addition & 1 deletion docker/test/stateless/stress_tests.lib
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
5 changes: 5 additions & 0 deletions tests/broken_tests.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
}
}
4 changes: 2 additions & 2 deletions tests/ci/ci_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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],
Expand Down
Loading