Index: test/ELF/entry.s =================================================================== --- test/ELF/entry.s +++ test/ELF/entry.s @@ -1,7 +1,7 @@ # RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t1 # RUN: not ld.lld %t1 -o %t2 # RUN: ld.lld %t1 -o %t2 -e entry - +# RUN: llvm-readobj -file-headers %t2 | FileCheck -check-prefix=SYMBOL %s # RUN: ld.lld %t1 -o %t2 -e 4096 # RUN: llvm-readobj -file-headers %t2 | FileCheck -check-prefix=DEC %s # RUN: ld.lld %t1 -o %t2 -e 0xcafe @@ -9,6 +9,7 @@ # RUN: ld.lld %t1 -o %t2 -e 0777 # RUN: llvm-readobj -file-headers %t2 | FileCheck -check-prefix=OCT %s +# SYMBOL: Entry: 0x11000 # DEC: Entry: 0x1000 # HEX: Entry: 0xCAFE # OCT: Entry: 0x1FF