aboutsummaryrefslogtreecommitdiff
path: root/test/LinkerScript/phdrs-sections.test
diff options
context:
space:
mode:
Diffstat (limited to 'test/LinkerScript/phdrs-sections.test')
-rw-r--r--test/LinkerScript/phdrs-sections.test29
1 files changed, 0 insertions, 29 deletions
diff --git a/test/LinkerScript/phdrs-sections.test b/test/LinkerScript/phdrs-sections.test
deleted file mode 100644
index 872b7999cb7e..000000000000
--- a/test/LinkerScript/phdrs-sections.test
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- Test PHDR parsing and section -> phdr mapping.
- RUN: linker-script-test %s | FileCheck %s
-*/
-
-PHDRS
-{
- ph_text PT_LOAD FLAGS (0x1 | 0x4);
- ph_data PT_LOAD FLAGS (0x2 | 0x4);
-}
-
-SECTIONS
-{
- .init : {} : ph_text
-}
-
-/*
-CHECK: PHDRS
-CHECK: {
-CHECK: ph_text 1 FLAGS (5);
-CHECK: ph_data 1 FLAGS (6);
-CHECK: }
-CHECK: SECTIONS
-CHECK: {
-CHECK: .init :
-CHECK: {
-CHECK: } : ph_text
-CHECK: }
-*/