diff options
author | Chris Lattner <sabre@nondot.org> | 2004-05-27 07:32:25 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-05-27 07:32:25 +0000 |
commit | 413c76f3bc9701f004aaad038c21b6fbcd061782 (patch) | |
tree | bfaf95046b6d4dce77141a1a390212d787ee6754 | |
parent | 8dfe5705b16eeebec701f725351cc5a6102e0dfd (diff) | |
download | external_llvm-413c76f3bc9701f004aaad038c21b6fbcd061782.zip external_llvm-413c76f3bc9701f004aaad038c21b6fbcd061782.tar.gz external_llvm-413c76f3bc9701f004aaad038c21b6fbcd061782.tar.bz2 |
Correct test. use "not grep" instead of "grep -v"
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13824 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Linker/2003-01-30-LinkerTypeRename.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Linker/2003-01-30-LinkerTypeRename.ll b/test/Linker/2003-01-30-LinkerTypeRename.ll index e53c239..f968054 100644 --- a/test/Linker/2003-01-30-LinkerTypeRename.ll +++ b/test/Linker/2003-01-30-LinkerTypeRename.ll @@ -1,9 +1,9 @@ ; This fails because the linker renames the non-opaque type not the opaque ; one... -; RUN: echo "%Ty = type opaque" | llvm-as > %t.1.bc +; RUN: echo "%Ty = type opaque %GV = external global %Ty*" | llvm-as > %t.1.bc ; RUN: llvm-as < %s > %t.2.bc -; RUN: llvm-link %t.[12].bc | llvm-dis | grep '%Ty ' | grep -v opaque +; RUN: llvm-link %t.[12].bc | llvm-dis | grep '%Ty ' | not grep opaque %Ty = type int |