From: Reid Kleckner Date: Thu, 19 Nov 2015 00:05:20 +0000 (+0000) Subject: Disable Go bindings test with MSan, it has tons of linker errors X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=5f2411b7502548a9fdd798cd7830fc5909c682bc;p=oota-llvm.git Disable Go bindings test with MSan, it has tons of linker errors git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@253525 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Bindings/Go/go.test b/test/Bindings/Go/go.test index 14eb3281cc4..407623e9c6d 100644 --- a/test/Bindings/Go/go.test +++ b/test/Bindings/Go/go.test @@ -1,3 +1,3 @@ ; RUN: llvm-go test llvm.org/llvm/bindings/go/llvm -; REQUIRES: shell, not_ubsan +; REQUIRES: shell, not_ubsan, not_msan diff --git a/test/lit.cfg b/test/lit.cfg index 140938296e0..f299d0f4451 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -336,6 +336,8 @@ if config.llvm_use_sanitizer == "Address": if (config.llvm_use_sanitizer == "Memory" or config.llvm_use_sanitizer == "MemoryWithOrigins"): config.available_features.add("msan") +else: + config.available_features.add("not_msan") if config.llvm_use_sanitizer == "Undefined": config.available_features.add("ubsan") else: