mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
2cf6d36f16
This change makes test with RUN lines like RUN: opt ... | FileCheck fail if opt fails, even if it prints what FileCheck wants. Enabling this found some interesting cases of broken tests that were not being noticed because opt (or some other tool) was crashing late. Pipefail is used when the shell supports it or when using the internal python based tester. llvm-svn: 187261
3 lines
78 B
Plaintext
3 lines
78 B
Plaintext
REQUIRES: shell
|
|
RUN: ((false | true) && echo true || echo false) | grep false
|