[PATCH] Add test for LinkModules warning on triple, modified by r203009. Datalayout is already tested.

JF Bastien jfb at chromium.org
Sun Mar 9 18:29:56 PDT 2014


    - Add WARN-A-NOT as suggested by Manman Ren. Add the same to datalayout.ll.

Hi rafael,

http://llvm-reviews.chandlerc.com/D3014

CHANGE SINCE LAST DIFF
  http://llvm-reviews.chandlerc.com/D3014?vs=7662&id=7672#toc

Files:
  test/Linker/Inputs/targettriple-a.ll
  test/Linker/Inputs/targettriple-b.ll
  test/Linker/datalayout.ll
  test/Linker/targettriple.ll

Index: test/Linker/Inputs/targettriple-a.ll
===================================================================
--- /dev/null
+++ test/Linker/Inputs/targettriple-a.ll
@@ -0,0 +1 @@
+target triple = "e"
Index: test/Linker/Inputs/targettriple-b.ll
===================================================================
--- /dev/null
+++ test/Linker/Inputs/targettriple-b.ll
@@ -0,0 +1 @@
+target triple = "E"
Index: test/Linker/datalayout.ll
===================================================================
--- test/Linker/datalayout.ll
+++ test/Linker/datalayout.ll
@@ -10,5 +10,6 @@
 
 ; this is a hack to check that llvm-link printed no warnings.
 ; WARN-A: FileCheck error: '-' is empty.
+; WARN-A-NOT: WARNING: Linking two modules of different data layouts:
 
 ; WARN-B: WARNING: Linking two modules of different data layouts:
Index: test/Linker/targettriple.ll
===================================================================
--- /dev/null
+++ test/Linker/targettriple.ll
@@ -0,0 +1,15 @@
+; 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: 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"
+
+; this is a hack to check that llvm-link printed no warnings.
+; WARN-A: FileCheck error: '-' is empty.
+; WARN-A-NOT:  WARNING: Linking two modules of different target triples:
+
+; WARN-B: WARNING: Linking two modules of different target triples:
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D3014.2.patch
Type: text/x-patch
Size: 1611 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20140309/e53167af/attachment.bin>


More information about the llvm-commits mailing list