From: Chris Lattner Date: Thu, 27 May 2004 07:32:25 +0000 (+0000) Subject: Correct test. use "not grep" instead of "grep -v" X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=413c76f3bc9701f004aaad038c21b6fbcd061782;p=oota-llvm.git 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 --- diff --git a/test/Linker/2003-01-30-LinkerTypeRename.ll b/test/Linker/2003-01-30-LinkerTypeRename.ll index e53c239d2e6..f96805427f5 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