mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-04 13:05:31 +00:00
Matching PR #883 in the message-format-wg repo. Also move spec tests for unsupported statements and expressions into new files to serve as syntax error tests.
27 lines
681 B
JSON
27 lines
681 B
JSON
{
|
|
"scenario": "Reserved statements",
|
|
"description": "Tests for unsupported statements (now syntax errors)",
|
|
"defaultTestProperties": {
|
|
"locale": "en-US",
|
|
"expErrors": [
|
|
{
|
|
"type": "syntax-error"
|
|
}
|
|
]
|
|
},
|
|
"tests": [
|
|
{ "src" : ".i {1} {{}}" },
|
|
{ "src" : ".l $y = {|bar|} {{}}" },
|
|
{ "src" : ".l $x.y = {|bar|} {{}}" },
|
|
{ "src": ".matc {-1} {{hello}}" },
|
|
{ "src": ".m {-1} {{hello}}" },
|
|
{ "src": ".n{a}{{}}" },
|
|
{ "src": ".foo {42} {{bar}}" },
|
|
{ "src": ".foo{42}{{bar}}" },
|
|
{ "src": ".foo |}lit{| {42}{{bar}}" },
|
|
{ "src": ".n .{a}{{}}" },
|
|
{ "src": ".n. {a}{{}}" },
|
|
{ "src": ".n.{a}{b}{{}}" }
|
|
]
|
|
}
|
|
|