summaryrefslogtreecommitdiff
path: root/test/LinkerScript/missing-input-sections.test
diff options
context:
space:
mode:
Diffstat (limited to 'test/LinkerScript/missing-input-sections.test')
-rw-r--r--test/LinkerScript/missing-input-sections.test27
1 files changed, 0 insertions, 27 deletions
diff --git a/test/LinkerScript/missing-input-sections.test b/test/LinkerScript/missing-input-sections.test
deleted file mode 100644
index 5db93444b1a9..000000000000
--- a/test/LinkerScript/missing-input-sections.test
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- RUN: linker-script-test %s 2> %t | FileCheck %s
- RUN: FileCheck -input-file %t -check-prefix=CHECK-ERR %s
-*/
-SECTIONS {
- .text : { *(+)}
-/*
-CHECK-ERR: [[@LINE-2]]:16: error: expected )
-CHECK-ERR-NEXT: {{^ \.text : { \*\(\+\)}}}
-CHECK-ERR-NEXT: {{^ \^}}
-*/
-}
-
-/*
-CHECK: kw_sections: SECTIONS
-CHECK: l_brace: {
-CHECK: identifier: .text
-CHECK: colon: :
-CHECK: l_brace: {
-CHECK: star: *
-CHECK: l_paren: (
-CHECK: plus: +
-CHECK: r_paren: )
-CHECK: r_brace: }
-CHECK: r_brace: }
-CHECK: eof:
-*/