diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-07-26 23:22:43 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-07-26 23:22:43 +0000 |
commit | 018696db4587dc6a0d8081d0627543f5c08b6c97 (patch) | |
tree | 1d713b271cb4d462c09c79d30be9bb95beee516c | |
parent | c16ab3ed2105b9794ca11680178b646b2762d286 (diff) | |
download | external_llvm-018696db4587dc6a0d8081d0627543f5c08b6c97.zip external_llvm-018696db4587dc6a0d8081d0627543f5c08b6c97.tar.gz external_llvm-018696db4587dc6a0d8081d0627543f5c08b6c97.tar.bz2 |
Move the default back to pipefail. I accidentally reverted it before.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187271 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | utils/lit/lit/TestingConfig.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/lit/lit/TestingConfig.py b/utils/lit/lit/TestingConfig.py index 499f751..16e698b 100644 --- a/utils/lit/lit/TestingConfig.py +++ b/utils/lit/lit/TestingConfig.py @@ -48,7 +48,7 @@ class TestingConfig: test_source_root = None, excludes = [], available_features = available_features, - pipefail = False) + pipefail = True) if os.path.exists(path): # FIXME: Improve detection and error reporting of errors in the |