aboutsummaryrefslogtreecommitdiff
path: root/test/old-elf/AArch64/initfini.test
diff options
context:
space:
mode:
Diffstat (limited to 'test/old-elf/AArch64/initfini.test')
-rw-r--r--test/old-elf/AArch64/initfini.test23
1 files changed, 0 insertions, 23 deletions
diff --git a/test/old-elf/AArch64/initfini.test b/test/old-elf/AArch64/initfini.test
deleted file mode 100644
index c5f385082edc..000000000000
--- a/test/old-elf/AArch64/initfini.test
+++ /dev/null
@@ -1,23 +0,0 @@
-# This tests the functionality that lld is able to read
-# init_array/fini_array sections in the input ELF. This
-# corresponds to the the .init_array/.fini_array sections
-# in the output ELF.
-
-RUN: lld -flavor old-gnu -target aarch64--linux-gnu %p/Inputs/initfini.o \
-RUN: --noinhibit-exec --output-filetype=yaml -o %t
-RUN: FileCheck %s < %t
-
-CHECK: type: data
-CHECK: content: [ 00, 00, 00, 00, 00, 00, 00, 00 ]
-CHECK: section-name: .init_array
-CHECK: references:
-CHECK: - kind: R_AARCH64_ABS64
-CHECK: offset: 0
-CHECK: target: constructor
-CHECK: type: data
-CHECK: content: [ 00, 00, 00, 00, 00, 00, 00, 00 ]
-CHECK: section-name: .fini_array
-CHECK: references:
-CHECK: - kind: R_AARCH64_ABS64
-CHECK: offset: 0
-CHECK: target: destructor