Disable Go bindings test with MSan, it has tons of linker errors
authorReid Kleckner <rnk@google.com>
Thu, 19 Nov 2015 00:05:20 +0000 (00:05 +0000)
committerReid Kleckner <rnk@google.com>
Thu, 19 Nov 2015 00:05:20 +0000 (00:05 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@253525 91177308-0d34-0410-b5e6-96231b3b80d8

test/Bindings/Go/go.test
test/lit.cfg

index 14eb3281cc4e68d45c0a998d010cb9d0fb0fec28..407623e9c6dcf5fe7a611f1a531b303190be1cce 100644 (file)
@@ -1,3 +1,3 @@
 ; RUN: llvm-go test llvm.org/llvm/bindings/go/llvm
 
-; REQUIRES: shell, not_ubsan
+; REQUIRES: shell, not_ubsan, not_msan
index 140938296e0e30aaeebf869852a7ec6139ad8d01..f299d0f4451c5f7fe6cc5dbc7a0185158882a5a4 100644 (file)
@@ -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: