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
This commit is contained in:
Chris Lattner 2004-05-27 07:32:25 +00:00
parent 8dfe5705b1
commit 413c76f3bc

View File

@ -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