forked from OSchip/llvm-project
Don't depend on Tcl behavior of redirecting stderr for all commands in a
pipeline. llvm-svn: 81153
This commit is contained in:
parent
0367b0f136
commit
7fcfc4fc31
|
@ -1,5 +1,5 @@
|
|||
; Ignore stderr, we expect warnings there
|
||||
; RUN: llvm-as < %s 2> /dev/null | opt -instcombine | llvm-dis | not grep bitcast
|
||||
; RUN: llvm-as < %s | opt -instcombine 2> /dev/null | llvm-dis | not grep bitcast
|
||||
|
||||
define void @a() {
|
||||
ret void
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
; Ignore stderr, we expect warnings there
|
||||
; RUN: llvm-as < %s 2> /dev/null | opt -instcombine | llvm-dis | \
|
||||
; RUN: llvm-as < %s | opt -instcombine 2> /dev/null | llvm-dis | \
|
||||
; RUN: grep call | notcast
|
||||
; END.
|
||||
|
||||
|
|
Loading…
Reference in New Issue