From 4b0253af7e5baf16b061f7a41b1482ba6d3fd56b Mon Sep 17 00:00:00 2001 From: George Rimar Date: Tue, 17 Jan 2017 14:06:44 +0000 Subject: [PATCH] [ELF] - Fix for huge-temporary-file.s Removed mentioning of checks. Sorry for noise. llvm-svn: 292221 --- lld/test/ELF/linkerscript/huge-temporary-file.s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lld/test/ELF/linkerscript/huge-temporary-file.s b/lld/test/ELF/linkerscript/huge-temporary-file.s index 8dc91d8605c1..d58709cf8f8d 100644 --- a/lld/test/ELF/linkerscript/huge-temporary-file.s +++ b/lld/test/ELF/linkerscript/huge-temporary-file.s @@ -1,7 +1,7 @@ # REQUIRES: x86 # RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t # RUN: echo "SECTIONS { .text 0x2000 : {. = 0x10 ; *(.text) } }" > %t.script -# RUN: not ld.lld %t --script %t.script -o %t1 2>&1 | FileCheck %s +# RUN: not ld.lld %t --script %t.script -o %t1 ## This inputs previously created a 4gb temporarily fine under 32 bit ## configuration. Issue was fixed. There is no clean way to check that from here.