[llvm] r229118 - Add run line that was missing in r228999.

Akira Hatanaka ahatanaka at apple.com
Fri Feb 13 08:00:03 PST 2015


Author: ahatanak
Date: Fri Feb 13 10:00:03 2015
New Revision: 229118

URL: http://llvm.org/viewvc/llvm-project?rev=229118&view=rev
Log:
Add run line that was missing in r228999.

Also, change the run lines to use -allow-empty.

Modified:
    llvm/trunk/test/Linker/targettriple.ll

Modified: llvm/trunk/test/Linker/targettriple.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Linker/targettriple.ll?rev=229118&r1=229117&r2=229118&view=diff
==============================================================================
--- llvm/trunk/test/Linker/targettriple.ll (original)
+++ llvm/trunk/test/Linker/targettriple.ll Fri Feb 13 10:00:03 2015
@@ -1,12 +1,14 @@
 ; 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: cat %t.a.err | FileCheck --check-prefix=WARN-A %s --allow-empty
 
 ; 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
+; RUN: llvm-link %s %S/Inputs/targettriple-c.ll -S -o - 2>%t.c.err | FileCheck %s
+; RUN: cat %t.c.err | FileCheck --check-prefix=WARN-C %s --allow-empty
 
 ; RUN: llvm-link -suppress-warnings %s %S/Inputs/targettriple-b.ll -S -o - 2>%t.no-warn.err | FileCheck %s
-; RUN: (echo foo ;cat %t.no-warn.err) | FileCheck --check-prefix=WARN-A %s
+; RUN: cat %t.no-warn.err | FileCheck --check-prefix=WARN-A %s --allow-empty
 
 target triple = "x86_64-unknown-linux-gnu"
 





More information about the llvm-commits mailing list