diff options
Diffstat (limited to 'test/ELF/build-id.s')
-rw-r--r-- | test/ELF/build-id.s | 34 |
1 files changed, 30 insertions, 4 deletions
diff --git a/test/ELF/build-id.s b/test/ELF/build-id.s index f1eac42812b4e..51758d9eb24a7 100644 --- a/test/ELF/build-id.s +++ b/test/ELF/build-id.s @@ -1,16 +1,36 @@ # REQUIRES: x86 # RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t -# RUN: ld.lld --build-id %t -o %t2 + +# RUN: ld.lld --build-id %t -o %t2 -threads +# RUN: llvm-objdump -s %t2 | FileCheck -check-prefix=DEFAULT %s +# RUN: ld.lld --build-id %t -o %t2 -no-threads # RUN: llvm-objdump -s %t2 | FileCheck -check-prefix=DEFAULT %s -# RUN: ld.lld --build-id=md5 %t -o %t2 + +# RUN: ld.lld --build-id=md5 %t -o %t2 -threads +# RUN: llvm-objdump -s %t2 | FileCheck -check-prefix=MD5 %s +# RUN: ld.lld --build-id=md5 %t -o %t2 -no-threads # RUN: llvm-objdump -s %t2 | FileCheck -check-prefix=MD5 %s -# RUN: ld.lld --build-id=sha1 %t -o %t2 + +# RUN: ld.lld --build-id=sha1 %t -o %t2 -threads +# RUN: llvm-objdump -s %t2 | FileCheck -check-prefix=SHA1 %s +# RUN: ld.lld --build-id=sha1 %t -o %t2 -no-threads +# RUN: llvm-objdump -s %t2 | FileCheck -check-prefix=SHA1 %s + +# RUN: ld.lld --build-id=tree %t -o %t2 -threads # RUN: llvm-objdump -s %t2 | FileCheck -check-prefix=SHA1 %s +# RUN: ld.lld --build-id=tree %t -o %t2 -no-threads +# RUN: llvm-objdump -s %t2 | FileCheck -check-prefix=SHA1 %s + +# RUN: ld.lld --build-id=uuid %t -o %t2 +# RUN: llvm-objdump -s %t2 | FileCheck -check-prefix=UUID %s + # RUN: ld.lld --build-id=0x12345678 %t -o %t2 # RUN: llvm-objdump -s %t2 | FileCheck -check-prefix=HEX %s + # RUN: ld.lld %t -o %t2 # RUN: llvm-objdump -s %t2 | FileCheck -check-prefix=NONE %s + # RUN: ld.lld --build-id=md5 --build-id=none %t -o %t2 # RUN: llvm-objdump -s %t2 | FileCheck -check-prefix=NONE %s @@ -21,15 +41,21 @@ _start: .section .note.test, "a", @note .quad 42 +# DEFAULT: Contents of section .note.test: # DEFAULT: Contents of section .note.gnu.build-id: # DEFAULT-NEXT: 04000000 08000000 03000000 474e5500 ............GNU. -# DEFAULT: Contents of section .note.test: +# DEFAULT-NEXT: d08dafb4 e6294b62 # MD5: Contents of section .note.gnu.build-id: # MD5-NEXT: 04000000 10000000 03000000 474e5500 ............GNU. +# MD5-NEXT: 37 # SHA1: Contents of section .note.gnu.build-id: # SHA1-NEXT: 04000000 14000000 03000000 474e5500 ............GNU. +# SHA1-NEXT: 7a4f4eaf 69ceb948 4a7d6e51 2225e87c + +# UUID: Contents of section .note.gnu.build-id: +# UUID-NEXT: 04000000 10000000 03000000 474e5500 ............GNU. # HEX: Contents of section .note.gnu.build-id: # HEX-NEXT: 04000000 04000000 03000000 474e5500 ............GNU. |