From 29e1fddaa923ec352025e5550a5167050fab8712 Mon Sep 17 00:00:00 2001 From: Hamish Knight Date: Tue, 28 Oct 2025 11:33:09 +0000 Subject: [PATCH] [test] Avoid running crasher test cases on ASan --- validation-test/IDE/crashers/lit.local.cfg | 2 ++ validation-test/compiler_crashers/lit.local.cfg | 2 ++ 2 files changed, 4 insertions(+) diff --git a/validation-test/IDE/crashers/lit.local.cfg b/validation-test/IDE/crashers/lit.local.cfg index 0f7012126c4f3..0516318b4e0c6 100644 --- a/validation-test/IDE/crashers/lit.local.cfg +++ b/validation-test/IDE/crashers/lit.local.cfg @@ -1,2 +1,4 @@ if "asserts" not in config.available_features: config.unsupported = True +if "asan" in config.available_features: + config.unsupported = True diff --git a/validation-test/compiler_crashers/lit.local.cfg b/validation-test/compiler_crashers/lit.local.cfg index 0f7012126c4f3..0516318b4e0c6 100644 --- a/validation-test/compiler_crashers/lit.local.cfg +++ b/validation-test/compiler_crashers/lit.local.cfg @@ -1,2 +1,4 @@ if "asserts" not in config.available_features: config.unsupported = True +if "asan" in config.available_features: + config.unsupported = True