From fec4c5793423abaa1da55749e03af890d259b1e5 Mon Sep 17 00:00:00 2001 From: Alexander Sapin Date: Wed, 1 May 2024 15:03:52 +0200 Subject: [PATCH] Add run with msan --- tests/ci/ci_config.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/ci/ci_config.py b/tests/ci/ci_config.py index 28a841fe0fa..a47c30de674 100644 --- a/tests/ci/ci_config.py +++ b/tests/ci/ci_config.py @@ -131,6 +131,7 @@ class JobNames(metaclass=WithIter): STRESS_TEST_MSAN = "Stress test (msan)" STRESS_TEST_DEBUG = "Stress test (debug)" STRESS_TEST_AZURE_TSAN = "Stress test (azure, tsan)" + STRESS_TEST_AZURE_MSAN = "Stress test (azure, msan)" INTEGRATION_TEST = "Integration tests (release)" INTEGRATION_TEST_ASAN = "Integration tests (asan)" @@ -1234,6 +1235,9 @@ CI_CONFIG = CIConfig( JobNames.STRESS_TEST_AZURE_TSAN: TestConfig( Build.PACKAGE_TSAN, job_config=JobConfig(**stress_test_common_params, release_only=True, run_by_ci_option=True) # type: ignore ), + JobNames.STRESS_TEST_AZURE_MSAN: TestConfig( + Build.PACKAGE_MSAN, job_config=JobConfig(**stress_test_common_params, release_only=True, run_by_ci_option=True) # type: ignore + ), JobNames.UPGRADE_TEST_TSAN: TestConfig( Build.PACKAGE_TSAN, job_config=JobConfig(pr_only=True, random_bucket="upgrade_with_sanitizer", **upgrade_test_common_params) # type: ignore ),