summaryrefslogtreecommitdiff
path: root/test/LinkerScript/missing-operand.test
diff options
context:
space:
mode:
Diffstat (limited to 'test/LinkerScript/missing-operand.test')
-rw-r--r--test/LinkerScript/missing-operand.test24
1 files changed, 0 insertions, 24 deletions
diff --git a/test/LinkerScript/missing-operand.test b/test/LinkerScript/missing-operand.test
deleted file mode 100644
index cfa87bf40768..000000000000
--- a/test/LinkerScript/missing-operand.test
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- RUN: linker-script-test %s 2> %t | FileCheck %s
- RUN: FileCheck -check-prefix=CHECK-ERR -input-file %t %s
-*/
-SECTIONS {
- . = foo / ;
-/*
-CHECK-ERR: [[@LINE-2]]:15: error: expected symbol, number, minus, tilde or left parenthesis.
-CHECK-ERR-NEXT: {{^ . = foo / ;}}
-CHECK-ERR-NEXT: {{^ \^}}
-*/
-}
-
-/*
-CHECK: kw_sections: SECTIONS
-CHECK: l_brace: {
-CHECK: identifier: .
-CHECK: equal: =
-CHECK: identifier: foo
-CHECK: slash: /
-CHECK: semicolon: ;
-CHECK: r_brace: }
-CHECK: eof:
- */