Skip to content
Closed
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
6 changes: 6 additions & 0 deletions tests/broken_tests.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@
"01052_window_view_proc_tumble_to_now": {
"reason": "INVESTIGATE - fail in msan"
},
"02969_auto_format_detection": {
"reason": "KNOWN crash in ubsan 1/2"
},
"Tests are not finished": {
"reason": "KNOWN crash in ubsan 1/2"
},
"test_backward_compatibility/test_aggregate_function_state.py::test_backward_compatability_for_avg":{
"reason": "KNOWN not run by upstream"
},
Expand Down
2 changes: 1 addition & 1 deletion tests/ci/ci_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -1176,7 +1176,7 @@ def validate(self) -> None:
),
JobNames.STATELESS_TEST_UBSAN: TestConfig(
Build.PACKAGE_UBSAN,
job_config=JobConfig(num_batches=2, **statless_test_common_params), # type: ignore
job_config=JobConfig(num_batches=8, **statless_test_common_params), # type: ignore
),
JobNames.STATELESS_TEST_DEBUG: TestConfig(
Build.PACKAGE_DEBUG,
Expand Down
3 changes: 3 additions & 0 deletions tests/ci/functional_test_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ def get_run_command(
additional_options = ["--hung-check"]
additional_options.append("--print-time")

if "Stateless" in check_name and "ubsan" in check_name:
additional_options.append('--sequential=""')

if tests_to_run:
additional_options += tests_to_run

Expand Down
Loading