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 | 0ceb07b09ead111c3058e104f50805e5bfc917f9 (patch) | |
| tree | d88073caafbac20cb2ece211a77592e7c59a5407 | |
| parent | c6e21fbd5c35ea8a92bc3a9608ceaaa7a58aa647 (diff) | |
| download | bcm5719-llvm-0ceb07b09ead111c3058e104f50805e5bfc917f9.tar.gz bcm5719-llvm-0ceb07b09ead111c3058e104f50805e5bfc917f9.zip | |
Correct test. use "not grep" instead of "grep -v"
llvm-svn: 13824
| -rw-r--r-- | llvm/test/Regression/Linker/2003-01-30-LinkerTypeRename.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/Regression/Linker/2003-01-30-LinkerTypeRename.ll b/llvm/test/Regression/Linker/2003-01-30-LinkerTypeRename.ll index e53c239d2e6..f96805427f5 100644 --- a/llvm/test/Regression/Linker/2003-01-30-LinkerTypeRename.ll +++ b/llvm/test/Regression/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 |

