[lld] r294502 - Attempt to fix lld-x86_64-win7 bot.

Rui Ueyama via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 8 11:22:35 PST 2017


Author: ruiu
Date: Wed Feb  8 13:22:34 2017
New Revision: 294502

URL: http://llvm.org/viewvc/llvm-project?rev=294502&view=rev
Log:
Attempt to fix lld-x86_64-win7 bot.

The test is failing on the bot because "/subsystem:console" was
truncated for some reason. I don't know why that is happening on
that machine (it is not reproducible on my Windows machine).
In this patch, I'm trying to tame it by making the output shorter.

Modified:
    lld/trunk/test/COFF/msvclto.ll

Modified: lld/trunk/test/COFF/msvclto.ll
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/test/COFF/msvclto.ll?rev=294502&r1=294501&r2=294502&view=diff
==============================================================================
--- lld/trunk/test/COFF/msvclto.ll (original)
+++ lld/trunk/test/COFF/msvclto.ll Wed Feb  8 13:22:34 2017
@@ -1,10 +1,10 @@
 ; RUN: llvm-as -o %t1.obj %s
 ; RUN: llvm-mc -triple=x86_64-pc-windows-msvc -filetype=obj -o %t2.obj %p/Inputs/msvclto.s
 ; RUN: lld-link %t1.obj %t2.obj /msvclto /out:%t.exe /opt:lldlto=1 /opt:icf \
-; RUN:   /entry:main /verbose /subsystem:console > %t.log || true
+; RUN:   /entry:main /verbose > %t.log || true
 ; RUN: FileCheck %s < %t.log
 
-; CHECK: link.exe /nologo {{.*}} {{.*}}2.obj /out:{{.*}}.exe /opt:icf /entry:main /verbose /subsystem:console
+; CHECK: link.exe /nologo {{.*}} {{.*}}2.obj /out:{{.*}}.exe /opt:icf /entry:main /verbose
 
 target datalayout = "e-m:w-i64:64-f80:128-n8:16:32:64-S128"
 target triple = "x86_64-pc-windows-msvc"




More information about the llvm-commits mailing list