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

pipeline.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81153 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Daniel Dunbar 2009-09-07 19:26:02 +00:00
parent b25f32bab8
commit 59e8efdd59
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.