aboutsummaryrefslogtreecommitdiff
path: root/test/msan/lit.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'test/msan/lit.cfg')
-rw-r--r--test/msan/lit.cfg6
1 files changed, 1 insertions, 5 deletions
diff --git a/test/msan/lit.cfg b/test/msan/lit.cfg
index eb0ed43897ca..cac260999877 100644
--- a/test/msan/lit.cfg
+++ b/test/msan/lit.cfg
@@ -29,13 +29,9 @@ config.substitutions.append( ("%clangxx_msan ", build_invocation(clang_msan_cxxf
# Default test suffixes.
config.suffixes = ['.c', '.cc', '.cpp']
-# MemorySanitizer tests are currently supported on Linux only.
-if config.host_os not in ['Linux']:
+if config.host_os not in ['Linux', 'NetBSD']:
config.unsupported = True
-if config.target_arch != 'aarch64':
- config.available_features.add('stable-runtime')
-
# For mips64, mips64el we have forced store_context_size to 1 because these
# archs use slow unwinder which is not async signal safe. Therefore we only
# check the first frame since store_context size is 1.