diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-07-23 13:18:20 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-07-23 13:18:20 +0000 |
commit | 113034596c30c4a0eba2005772d16849695bf67d (patch) | |
tree | d217049da69be6c84b7bc8cd79ecb0d3ed3f8ae9 | |
parent | 810cdaf76349a2768c189bb3ad625fe6ee1d2514 (diff) | |
download | external_llvm-113034596c30c4a0eba2005772d16849695bf67d.zip external_llvm-113034596c30c4a0eba2005772d16849695bf67d.tar.gz external_llvm-113034596c30c4a0eba2005772d16849695bf67d.tar.bz2 |
Add not so that these tests pass with pipefail enabled.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186939 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/MC/Disassembler/ARM/invalid-armv7.txt | 2 | ||||
-rw-r--r-- | test/MC/Disassembler/ARM/invalid-because-armv7.txt | 2 | ||||
-rw-r--r-- | test/MC/Disassembler/ARM/invalid-thumbv7.txt | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/test/MC/Disassembler/ARM/invalid-armv7.txt b/test/MC/Disassembler/ARM/invalid-armv7.txt index ee28a27..be79326 100644 --- a/test/MC/Disassembler/ARM/invalid-armv7.txt +++ b/test/MC/Disassembler/ARM/invalid-armv7.txt @@ -1,4 +1,4 @@ -# RUN: llvm-mc -disassemble %s -mcpu cortex-a8 -triple armv7 2>&1 | FileCheck %s +# RUN: not llvm-mc -disassemble %s -mcpu cortex-a8 -triple armv7 2>&1 | FileCheck %s # This file is checking ARMv7 encodings which are globally invalid, usually due # to the constraints of the instructions not being met. For example invalid diff --git a/test/MC/Disassembler/ARM/invalid-because-armv7.txt b/test/MC/Disassembler/ARM/invalid-because-armv7.txt index 8127d5b..4bf4833 100644 --- a/test/MC/Disassembler/ARM/invalid-because-armv7.txt +++ b/test/MC/Disassembler/ARM/invalid-because-armv7.txt @@ -1,4 +1,4 @@ -# RUN: llvm-mc -disassemble -triple armv7 -show-encoding < %s 2>&1 | FileCheck %s +# RUN: not llvm-mc -disassemble -triple armv7 -show-encoding < %s 2>&1 | FileCheck %s # This file is checking encodings that are valid on some triples, but not on the # ARMv7 triple, probably because the relevant instruction is v8, though there diff --git a/test/MC/Disassembler/ARM/invalid-thumbv7.txt b/test/MC/Disassembler/ARM/invalid-thumbv7.txt index 5f1d32b..f465b3c 100644 --- a/test/MC/Disassembler/ARM/invalid-thumbv7.txt +++ b/test/MC/Disassembler/ARM/invalid-thumbv7.txt @@ -1,4 +1,4 @@ -# RUN: llvm-mc -disassemble %s -mcpu cortex-a8 -triple thumbv7 2>&1 | FileCheck %s +# RUN: not llvm-mc -disassemble %s -mcpu cortex-a8 -triple thumbv7 2>&1 | FileCheck %s # This file is checking Thumbv7 encodings which are globally invalid, usually due # to the constraints of the instructions not being met. For example invalid |