From 3dc7a777c8ddd054373f71fad1912428eae3e202 Mon Sep 17 00:00:00 2001 From: Derek Schuff Date: Thu, 26 Sep 2024 13:56:42 -0700 Subject: [PATCH] Disable test_avx under UBSan (#22635) This is needed after #22430 expanded the test. --- test/test_core.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test_core.py b/test/test_core.py index bb868f07dbf0..c2ce1129731f 100644 --- a/test/test_core.py +++ b/test/test_core.py @@ -6638,6 +6638,7 @@ def test_sse4(self, use_4_2): @requires_native_clang @is_slow_test @no_asan('local count too large') + @no_ubsan('local count too large') def test_avx(self): src = test_file('sse/test_avx.cpp') self.run_process([shared.CLANG_CXX, src, '-mavx', '-Wno-argument-outside-range', '-Wpedantic', '-o', 'test_avx', '-D_CRT_SECURE_NO_WARNINGS=1'] + clang_native.get_clang_native_args(), stdout=PIPE)