diff options
| author | Raphael Isemann <teemperor@gmail.com> | 2019-10-10 14:00:32 +0000 |
|---|---|---|
| committer | Raphael Isemann <teemperor@gmail.com> | 2019-10-10 14:00:32 +0000 |
| commit | ffe170c6e26075839d9d82da2c65fc4ba252cffd (patch) | |
| tree | 608f02e62dbfd7df3a49095874bef0e29f6fe44e | |
| parent | f096443a9812a472de1d7b899b19f844120fb125 (diff) | |
| download | bcm5719-llvm-ffe170c6e26075839d9d82da2c65fc4ba252cffd.tar.gz bcm5719-llvm-ffe170c6e26075839d9d82da2c65fc4ba252cffd.zip | |
[lldb] Fix minidebuginfo-set-and-hit-breakpoint.test
This was failing for me because of this error:
llvm-objcopy: error: 'build/tools/lldb/test/ObjectFile/ELF/Output/minidebuginfo-set-and-hit-breakpoint.test.tmp.mini_debuginfo': section '.dynsym' cannot be removed because it is referenced by the section '.hash'
Patch by Konrad Kleine!
llvm-svn: 374352
| -rw-r--r-- | lldb/test/Shell/ObjectFile/ELF/minidebuginfo-set-and-hit-breakpoint.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/Shell/ObjectFile/ELF/minidebuginfo-set-and-hit-breakpoint.test b/lldb/test/Shell/ObjectFile/ELF/minidebuginfo-set-and-hit-breakpoint.test index c568a19642a..93c524f0552 100644 --- a/lldb/test/Shell/ObjectFile/ELF/minidebuginfo-set-and-hit-breakpoint.test +++ b/lldb/test/Shell/ObjectFile/ELF/minidebuginfo-set-and-hit-breakpoint.test @@ -42,7 +42,7 @@ # .rela.dyn and .dynsym sections can be removed once llvm-objcopy # --only-keep-debug starts to work. # RUN: llvm-objcopy --remove-section=.rela.plt --remove-section=.rela.dyn \ -# RUN: --remove-section=.gnu.version --remove-section=.gnu.hash --remove-section=.dynsym %t.mini_debuginfo +# RUN: --remove-section=.gnu.version --remove-section=.gnu.hash --remove-section=.hash --remove-section=.dynsym %t.mini_debuginfo # Drop the full debug info from the original binary. |

