Skip to content

Commit 192051a

Browse files
committed
hack to run stateless ubsan sequentially
1 parent b49754c commit 192051a

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

tests/ci/ci_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1176,7 +1176,7 @@ def validate(self) -> None:
11761176
),
11771177
JobNames.STATELESS_TEST_UBSAN: TestConfig(
11781178
Build.PACKAGE_UBSAN,
1179-
job_config=JobConfig(num_batches=2, **statless_test_common_params), # type: ignore
1179+
job_config=JobConfig(num_batches=8, **statless_test_common_params), # type: ignore
11801180
),
11811181
JobNames.STATELESS_TEST_DEBUG: TestConfig(
11821182
Build.PACKAGE_DEBUG,

tests/ci/functional_test_check.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,9 @@ def get_run_command(
7272
additional_options = ["--hung-check"]
7373
additional_options.append("--print-time")
7474

75+
if "Stateless" in check_name and "ubsan" in check_name:
76+
additional_options.append("--sequential=''")
77+
7578
if tests_to_run:
7679
additional_options += tests_to_run
7780

0 commit comments

Comments
 (0)