summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-05-27 07:32:25 +0000
committerChris Lattner <sabre@nondot.org>2004-05-27 07:32:25 +0000
commit413c76f3bc9701f004aaad038c21b6fbcd061782 (patch)
treebfaf95046b6d4dce77141a1a390212d787ee6754 /test
parent8dfe5705b16eeebec701f725351cc5a6102e0dfd (diff)
downloadllvm-413c76f3bc9701f004aaad038c21b6fbcd061782.tar.gz
llvm-413c76f3bc9701f004aaad038c21b6fbcd061782.tar.bz2
llvm-413c76f3bc9701f004aaad038c21b6fbcd061782.tar.xz
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
Diffstat (limited to 'test')
-rw-r--r--test/Linker/2003-01-30-LinkerTypeRename.ll4
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 e53c239d2e..f96805427f 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