From a987f84b1553dc77d70d27a31155c3bef34ecb8f Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Tue, 22 Nov 2022 19:52:36 +0200 Subject: [PATCH] ci: skip the very slow running tests in `v test-self`, when -asan-compiler or -msan-compiler is passed as well. --- cmd/tools/vtest-self.v | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmd/tools/vtest-self.v b/cmd/tools/vtest-self.v index 1ffc1a4ae1..592163e808 100644 --- a/cmd/tools/vtest-self.v +++ b/cmd/tools/vtest-self.v @@ -320,7 +320,8 @@ fn main() { } } if os.getenv('VTEST_RUN_FSANITIZE_TOO_SLOW').len == 0 - && (sanitize_undefined || sanitize_memory || sanitize_address) { + && ((sanitize_undefined || sanitize_memory || sanitize_address) + || (msan_compiler || asan_compiler)) { tsession.skip_files << skip_fsanitize_too_slow } if werror {