[lld] r327419 - [ELF} - Fix build bots.
George Rimar via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 13 09:23:48 PDT 2018
Author: grimar
Date: Tue Mar 13 09:23:48 2018
New Revision: 327419
URL: http://llvm.org/viewvc/llvm-project?rev=327419&view=rev
Log:
[ELF} - Fix build bots.
Modified:
lld/trunk/test/ELF/linkerscript/expr-invalid-sec.test
lld/trunk/test/ELF/linkerscript/locationcountererr.test
Modified: lld/trunk/test/ELF/linkerscript/expr-invalid-sec.test
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/test/ELF/linkerscript/expr-invalid-sec.test?rev=327419&r1=327418&r2=327419&view=diff
==============================================================================
--- lld/trunk/test/ELF/linkerscript/expr-invalid-sec.test (original)
+++ lld/trunk/test/ELF/linkerscript/expr-invalid-sec.test Tue Mar 13 09:23:48 2018
@@ -2,7 +2,7 @@
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux /dev/null -o %t.o
# RUN: not ld.lld -o %t.so --script %s %t.o -shared 2>&1 | FileCheck %s
-# CHECK: error: {{.*}}.s:8: at least one side of the expression must be absolute
+# CHECK: error: {{.*}}.test:8: at least one side of the expression must be absolute
SECTIONS {
foo = ADDR(.text) + ADDR(.text);
Modified: lld/trunk/test/ELF/linkerscript/locationcountererr.test
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/test/ELF/linkerscript/locationcountererr.test?rev=327419&r1=327418&r2=327419&view=diff
==============================================================================
--- lld/trunk/test/ELF/linkerscript/locationcountererr.test (original)
+++ lld/trunk/test/ELF/linkerscript/locationcountererr.test Tue Mar 13 09:23:48 2018
@@ -1,7 +1,7 @@
# REQUIRES: x86
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux /dev/null -o %t
# RUN: not ld.lld %t --script %s -o %t1 2>&1 | FileCheck %s
-# CHECK: {{.*}}.s:8: unable to move location counter backward for: .text
+# CHECK: {{.*}}.test:8: unable to move location counter backward for: .text
SECTIONS {
.text 0x2000 : {
More information about the llvm-commits
mailing list