mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
0e94ccaad6
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. llvm-svn: 203595
15 lines
452 B
LLVM
15 lines
452 B
LLVM
; REQUIRES: shell
|
|
; RUN: llvm-link %s %S/Inputs/targettriple-a.ll -S -o - 2>%t.a.err | FileCheck %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
|
|
|
|
target triple = "e"
|
|
|
|
; CHECK: target triple = "e"
|
|
|
|
; WARN-A-NOT: WARNING
|
|
|
|
; WARN-B: WARNING: Linking two modules of different target triples:
|