aboutsummaryrefslogtreecommitdiff
path: root/test/elf/X86_64/largebss.test
diff options
context:
space:
mode:
Diffstat (limited to 'test/elf/X86_64/largebss.test')
-rw-r--r--test/elf/X86_64/largebss.test20
1 files changed, 0 insertions, 20 deletions
diff --git a/test/elf/X86_64/largebss.test b/test/elf/X86_64/largebss.test
deleted file mode 100644
index d2dde4954139..000000000000
--- a/test/elf/X86_64/largebss.test
+++ /dev/null
@@ -1,20 +0,0 @@
-# This tests the functionality of handling BSS symbols
-# BSS symbols don't occupy file content and are associated with typeZeroFill
-# Any typeZeroFill content wouldn't have space reserved in the file to store
-# its content
-
-RUN: lld -flavor gnu -target x86_64 %p/Inputs/largebss.o --output-filetype=yaml --noinhibit-exec | FileCheck %s
-
-CHECK: - name: largecommon
-CHECK: scope: global
-CHECK: type: zero-fill
-CHECK: size: 4000
-CHECK: merge: as-tentative
-CHECK: - name: largebss
-CHECK: scope: global
-CHECK: type: zero-fill
-CHECK: size: 4000
-CHECK: - name: largetbss
-CHECK: scope: global
-CHECK: type: thread-zero-fill
-CHECK: size: 4000