diff options
Diffstat (limited to 'test/LinkerScript/memory-missing-attrs.test')
-rw-r--r-- | test/LinkerScript/memory-missing-attrs.test | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/test/LinkerScript/memory-missing-attrs.test b/test/LinkerScript/memory-missing-attrs.test deleted file mode 100644 index fbbf38b76514..000000000000 --- a/test/LinkerScript/memory-missing-attrs.test +++ /dev/null @@ -1,32 +0,0 @@ -/* - RUN: linker-script-test %s 2> %t | FileCheck %s - RUN: FileCheck -input-file %t -check-prefix=CHECK-ERR %s -*/ - -MEMORY -{ - ram () : ORIGIN = 0x20000000, LENGTH = 128M -/* -CHECK-ERR: [[@LINE-2]]:8: error: Expected memory attribute string. -CHECK-ERR-NEXT: {{^ ram \(\) : ORIGIN = 0x20000000, LENGTH = 128M}} -CHECK-ERR-NEXT: {{^ \^}} -*/ -} - -/* -CHECK: kw_memory: MEMORY -CHECK: l_brace: { -CHECK: identifier: ram -CHECK: l_paren: ( -CHECK: r_paren: ) -CHECK: colon: : -CHECK: kw_origin: ORIGIN -CHECK: equal: = -CHECK: number: 0x20000000 -CHECK: comma: , -CHECK: kw_length: LENGTH -CHECK: equal: = -CHECK: number: 128M -CHECK: r_brace: } -CHECK: eof: -*/ |