Don't assume an empty stderr.
authorRafael Espindola <rafael.espindola@gmail.com>
Tue, 11 Mar 2014 18:25:33 +0000 (18:25 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Tue, 11 Mar 2014 18:25:33 +0000 (18:25 +0000)
GuardMalloc can print info to stderr, causing these tests to fail.
Since FileCheck errors on empty inputs, just add a bit of dummy
data to make it happy.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203595 91177308-0d34-0410-b5e6-96231b3b80d8

test/Linker/datalayout.ll
test/Linker/targettriple.ll

index de343027803a0abe9c7866d4d13915a1b6e3d2b6..8cbfc198a684b14436f034d296f545cc71e56502 100644 (file)
@@ -1,5 +1,6 @@
+; REQUIRES: shell
 ; RUN: llvm-link %s %S/Inputs/datalayout-a.ll -S -o - 2>%t.a.err | FileCheck %s
-; RUN: cat %t.a.err | not FileCheck %s 2>&1 | FileCheck --check-prefix=WARN-A %s
+; RUN: (echo foo ;cat %t.a.err) | FileCheck --check-prefix=WARN-A %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
@@ -8,7 +9,6 @@ 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-A-NOT: WARNING
 
 ; WARN-B: WARNING: Linking two modules of different data layouts:
index cf64e3f8729f4526fdd38bb517028851a38c50c6..71830477bddcec452d83c60b547c418a8d802e0e 100644 (file)
@@ -1,5 +1,6 @@
+; REQUIRES: shell
 ; RUN: llvm-link %s %S/Inputs/targettriple-a.ll -S -o - 2>%t.a.err | FileCheck %s
-; RUN: cat %t.a.err | not FileCheck %s 2>&1 | FileCheck --check-prefix=WARN-A %s
+; RUN: (echo foo ;cat %t.a.err) | FileCheck --check-prefix=WARN-A %s
 
 ; RUN: llvm-link %s %S/Inputs/targettriple-b.ll -S -o - 2>%t.b.err | FileCheck %s
 ; RUN: cat %t.b.err | FileCheck --check-prefix=WARN-B %s
@@ -8,7 +9,6 @@ target triple = "e"
 
 ; CHECK: target triple = "e"
 
-; this is a hack to check that llvm-link printed no warnings.
-; WARN-A: FileCheck error: '-' is empty.
+; WARN-A-NOT: WARNING
 
 ; WARN-B: WARNING: Linking two modules of different target triples: