mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
7e3e9aa8e1
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
15 lines
454 B
LLVM
15 lines
454 B
LLVM
; REQUIRES: shell
|
|
; RUN: llvm-link %s %S/Inputs/datalayout-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/datalayout-b.ll -S -o - 2>%t.b.err | FileCheck %s
|
|
; RUN: cat %t.b.err | FileCheck --check-prefix=WARN-B %s
|
|
|
|
target datalayout = "e"
|
|
|
|
; CHECK: target datalayout = "e"
|
|
|
|
; WARN-A-NOT: WARNING
|
|
|
|
; WARN-B: WARNING: Linking two modules of different data layouts:
|