Turn off pipefail on msan tests to match the other sanitizers until
someone can go through and update the RUN lines appropriately for the
new pipefail behavior.

git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@187298 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/msan/lit_tests/lit.cfg b/lib/msan/lit_tests/lit.cfg
index bc19b74..a49a172 100644
--- a/lib/msan/lit_tests/lit.cfg
+++ b/lib/msan/lit_tests/lit.cfg
@@ -67,6 +67,7 @@
 
 # Default test suffixes.
 config.suffixes = ['.c', '.cc', '.cpp']
+config.pipefail = False
 
 # MemorySanitizer tests are currently supported on Linux only.
 if config.host_os not in ['Linux']: