Skip to content
This repository was archived by the owner on Jan 26, 2024. It is now read-only.

Commit 4c8ea90

Browse files
committed
[LLDB] Fix LLDB buildbots break due to --image-base
LLDB build were failing due to following two test failures: lldb-shell :: ObjectFile/ELF/basic-info.yaml lldb-shell :: SymbolFile/DWARF/x86/debug-types-address-ranges.s There were caused by commit 6506907
1 parent a5f411b commit 4c8ea90

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lldb/test/Shell/ObjectFile/ELF/basic-info.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# REQUIRES: lld
22

33
# RUN: yaml2obj %s -o %t.o
4-
# RUN: ld.lld %t.o -o %t -image-base 0x47000
4+
# RUN: ld.lld %t.o -o %t --image-base 0x47000
55
# RUN: lldb-test object-file %t | FileCheck %s
66

77
# CHECK: Plugin name: elf

lldb/test/Shell/SymbolFile/DWARF/x86/debug-types-address-ranges.s

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# REQUIRES: lld
88

99
# RUN: llvm-mc -dwarf-version=5 -triple x86_64-pc-linux %s -filetype=obj >%t.o
10-
# RUN: ld.lld %t.o -o %t -image-base=0x47000 -z separate-code
10+
# RUN: ld.lld %t.o -o %t --image-base=0x47000 -z separate-code
1111
# RUN: %lldb %t -o "image lookup -a 0x48000 -v" -o exit | FileCheck %s
1212

1313
# CHECK: CompileUnit: id = {0x00000001}, file = "/tmp/a.cc", language = "c++"

0 commit comments

Comments
 (0)