summaryrefslogtreecommitdiff
path: root/test/LinkerScript/missing-operand.test
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2016-07-23 20:48:50 +0000
committerDimitry Andric <dim@FreeBSD.org>2016-07-23 20:48:50 +0000
commit1c98619801a5705c688e683be3ef9d70169a0686 (patch)
tree8422105cd1a94c368315f2db16b9ac746cf7c000 /test/LinkerScript/missing-operand.test
parentf4f3ce4613680903220815690ad79fc7ba0a2e26 (diff)
Notes
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:
- */