Revert "Use count 0."

This reverts commit r202283, because when we use GuardMalloc the test will fail
due to additional output to std err.

llvm-svn: 202341
This commit is contained in:
Juergen Ributzka 2014-02-27 03:10:10 +00:00
parent cdf1108b61
commit 95d11dee8b
1 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,5 @@
; RUN: llvm-link %s %S/Inputs/datalayout-a.ll -S -o - 2>%t.a.err | FileCheck %s ; RUN: llvm-link %s %S/Inputs/datalayout-a.ll -S -o - 2>%t.a.err | FileCheck %s
; RUN: cat %t.a.err | count 0 ; RUN: cat %t.a.err | not FileCheck %s 2>&1 | FileCheck --check-prefix=WARN-A %s
; RUN: llvm-link %s %S/Inputs/datalayout-b.ll -S -o - 2>%t.b.err | FileCheck %s ; RUN: llvm-link %s %S/Inputs/datalayout-b.ll -S -o - 2>%t.b.err | FileCheck %s
; RUN: cat %t.b.err | FileCheck --check-prefix=WARN-B %s ; RUN: cat %t.b.err | FileCheck --check-prefix=WARN-B %s
@ -8,4 +8,7 @@ target datalayout = "e"
; CHECK: target datalayout = "e" ; CHECK: target datalayout = "e"
; this is a hack to check that llvm-link printed no warnings.
; WARN-A: FileCheck error: '-' is empty.
; WARN-B: WARNING: Linking two modules of different data layouts! ; WARN-B: WARNING: Linking two modules of different data layouts!