From 09331fd742ef72836fc651b71dce90dfae63c2d8 Mon Sep 17 00:00:00 2001 From: Georgii Rymar Date: Tue, 14 Apr 2020 13:20:51 +0300 Subject: [PATCH] [LLD][ELF][Test] - Fixed the broken test case. There was no ":" after "SEC", hence the check was disabled. Found with the use of D78024. --- lld/test/ELF/x86-64-tls-gdie.s | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lld/test/ELF/x86-64-tls-gdie.s b/lld/test/ELF/x86-64-tls-gdie.s index d3edd1f..b1be62e 100644 --- a/lld/test/ELF/x86-64-tls-gdie.s +++ b/lld/test/ELF/x86-64-tls-gdie.s @@ -3,11 +3,11 @@ // RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %p/Inputs/tls-opt-gdie.s -o %tso.o // RUN: ld.lld -shared %tso.o -soname=so -o %t.so // RUN: ld.lld %t.o %t.so -o %t1 -// RUN: llvm-readobj -S %t1 | FileCheck --check-prefix=SEC --implicit-check-not=.plt %s +// RUN: llvm-readelf -S %t1 | FileCheck --check-prefix=SEC --implicit-check-not=.plt %s // RUN: llvm-readobj -r %t1 | FileCheck --check-prefix=RELOC %s // RUN: llvm-objdump -d --no-show-raw-insn %t1 | FileCheck --check-prefix=DISASM %s -// SEC .got PROGBITS 00000000002020b0 0020b0 000010 00 WA 0 0 8 +// SEC: .got PROGBITS 00000000002023a8 0003a8 000010 00 WA 0 0 8 //RELOC: Relocations [ //RELOC-NEXT: Section (5) .rela.dyn { -- 2.7.4