From d45abe12a6001b3cfd4ef2fdbbd516dc2a43597c Mon Sep 17 00:00:00 2001 From: Chandler Carruth Date: Sat, 27 Jul 2013 10:30:39 +0000 Subject: [PATCH] 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. llvm-svn: 187298 --- compiler-rt/lib/msan/lit_tests/lit.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler-rt/lib/msan/lit_tests/lit.cfg b/compiler-rt/lib/msan/lit_tests/lit.cfg index bc19b74..a49a172 100644 --- a/compiler-rt/lib/msan/lit_tests/lit.cfg +++ b/compiler-rt/lib/msan/lit_tests/lit.cfg @@ -67,6 +67,7 @@ config.environment['MSAN_SYMBOLIZER_PATH'] = config.llvm_symbolizer_path # 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']: -- 2.7.4