diff options
author | Matthijs Kooijman <matthijs@stdin.nl> | 2008-06-10 12:57:32 +0000 |
---|---|---|
committer | Matthijs Kooijman <matthijs@stdin.nl> | 2008-06-10 12:57:32 +0000 |
commit | 66a577a00f7138ae47d2944f14eec0fdbc8bb749 (patch) | |
tree | 1072542dfba6378515e2e037a6b5e7ee88656280 /test/Assembler/2003-11-11-ImplicitRename.ll | |
parent | e56baf2f0bf9d5cab23e269e9de1d0ea523d7bf3 (diff) | |
download | external_llvm-66a577a00f7138ae47d2944f14eec0fdbc8bb749.zip external_llvm-66a577a00f7138ae47d2944f14eec0fdbc8bb749.tar.gz external_llvm-66a577a00f7138ae47d2944f14eec0fdbc8bb749.tar.bz2 |
For all RUN lines starting with "not", redirect stderr to /dev/null so tests
don't fail when (expected) error output is produced. This fixes 17 tests.
While I was there, I also made all RUN lines of the form "not llvm-as..." a bit
more consistent, they now all redirect stderr and stdout to /dev/null and use
input redirect to read their input.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52174 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Assembler/2003-11-11-ImplicitRename.ll')
-rw-r--r-- | test/Assembler/2003-11-11-ImplicitRename.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Assembler/2003-11-11-ImplicitRename.ll b/test/Assembler/2003-11-11-ImplicitRename.ll index 0f858b4..7bfd3c1 100644 --- a/test/Assembler/2003-11-11-ImplicitRename.ll +++ b/test/Assembler/2003-11-11-ImplicitRename.ll @@ -1,4 +1,4 @@ -; RUN: not llvm-as < %s > /dev/null +; RUN: not llvm-as < %s >& /dev/null void %test() { %X = add int 0, 1 |