mirror of
https://github.com/intel/llvm.git
synced 2026-01-27 14:50:42 +08:00
Add a test for the feature introduced in r295240.
r295240 tweaked LLD to generate a symbol table when passing in --export-dynamic, even when creating static executables. Add a test to make sure this never regresses. Reviewed by: ruiu, rafael Differential Revision: https://reviews.llvm.org/D30175 llvm-svn: 295725
This commit is contained in:
32
lld/test/ELF/static-with-export-dynamic.s
Normal file
32
lld/test/ELF/static-with-export-dynamic.s
Normal file
@@ -0,0 +1,32 @@
|
||||
// RUN: llvm-mc -filetype=obj -triple=i686-unknown-cloudabi %s -o %t.o
|
||||
// RUN: ld.lld --export-dynamic %t.o -o %t
|
||||
// RUN: llvm-readobj -dyn-symbols %t | FileCheck %s
|
||||
// REQUIRES: x86
|
||||
|
||||
// Ensure that a dynamic symbol table is present when --export-dynamic
|
||||
// is passed in, even when creating statically linked executables.
|
||||
//
|
||||
// CHECK: DynamicSymbols [
|
||||
// CHECK-NEXT: Symbol {
|
||||
// CHECK-NEXT: Name:
|
||||
// CHECK-NEXT: Value: 0x0
|
||||
// CHECK-NEXT: Size: 0
|
||||
// CHECK-NEXT: Binding: Local
|
||||
// CHECK-NEXT: Type: None
|
||||
// CHECK-NEXT: Other: 0
|
||||
// CHECK-NEXT: Section: Undefined
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: Symbol {
|
||||
// CHECK-NEXT: Name: _start
|
||||
// CHECK-NEXT: Value: 0x11000
|
||||
// CHECK-NEXT: Size: 0
|
||||
// CHECK-NEXT: Binding: Global
|
||||
// CHECK-NEXT: Type: None
|
||||
// CHECK-NEXT: Other: 0
|
||||
// CHECK-NEXT: Section: .text
|
||||
// CHECK-NEXT: }
|
||||
// CHECK-NEXT: ]
|
||||
|
||||
.global _start
|
||||
_start:
|
||||
ret
|
||||
Reference in New Issue
Block a user