Don't depend on Tcl behavior of redirecting stderr for all commands in a

pipeline.

llvm-svn: 81153
This commit is contained in:
Daniel Dunbar 2009-09-07 19:26:02 +00:00
parent 0367b0f136
commit 7fcfc4fc31
2 changed files with 2 additions and 2 deletions

View File

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

View File

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