1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 13:11:39 +01:00

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 8721525d8d
commit b220fd9c58
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.