summaryrefslogtreecommitdiff
path: root/test/pecoff/grouped-sections.test
diff options
context:
space:
mode:
Diffstat (limited to 'test/pecoff/grouped-sections.test')
-rw-r--r--test/pecoff/grouped-sections.test17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/pecoff/grouped-sections.test b/test/pecoff/grouped-sections.test
deleted file mode 100644
index 40ae1478997e..000000000000
--- a/test/pecoff/grouped-sections.test
+++ /dev/null
@@ -1,17 +0,0 @@
-# RUN: yaml2obj %p/Inputs/grouped-sections.obj.yaml > %t.obj
-#
-# RUN: lld -flavor link /out:%t.exe /subsystem:console /entry:main -- %t.obj
-# RUN: llvm-objdump -s %t.exe | FileCheck %s
-#
-# The file "grouped-sections.obj" has three data sections in the following
-# order:
-#
-# .data$2
-# .data$1
-# .data
-#
-# If all the sections will be merged correctly, the resulting ".data"
-# section will have the string "Hello, world".
-
-CHECK: Contents of section .data:
-CHECK-NEXT: Hello, world