mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-04 13:05:31 +00:00
Updating the spec tests requires two implementation changes: * Match on variables rather than expressions -- see https://github.com/unicode-org/message-format-wg/pull/877 * Require attribute values to be literals (if present) -- see https://github.com/unicode-org/message-format-wg/pull/894 This updates the spec tests to commit 6c3704f41a9c24427126429fb43992b03609dfc8 in https://github.com/unicode-org/message-format-wg/ . Any changes following that commit will be addressed in a future PR.
27 lines
1 KiB
JSON
27 lines
1 KiB
JSON
{
|
|
"scenario": "Runtime errors",
|
|
"description": "Tests for bad-selector and bad-operand errors",
|
|
"defaultTestProperties": {
|
|
"locale": "en-US"
|
|
},
|
|
"tests": [
|
|
{
|
|
"src": ".local $h = {|horse| :date} .match $h\n 1 {{The value is one.}}\n * {{Formatter used as selector.}}",
|
|
"exp": "Formatter used as selector.",
|
|
"expErrors": [{"type": "bad-selector"}],
|
|
"ignoreJava": "ICU4J doesn't signal runtime errors?"
|
|
},
|
|
{
|
|
"src": ".local $h = {|horse| :number} .match $h\n 1 {{The value is one.}}\n * {{horse is not a number.}}",
|
|
"exp": "horse is not a number.",
|
|
"expErrors": [{"type": "bad-selector"}],
|
|
"ignoreJava": "ICU4J doesn't signal runtime errors?"
|
|
},
|
|
{
|
|
"src": ".local $sel = {|horse| :number}\n .match $sel\n 1 {{The value is one.}}\n * {{horse is not a number.}}",
|
|
"exp": "horse is not a number.",
|
|
"expErrors": [{"type": "bad-selector"}],
|
|
"ignoreJava": "ICU4J doesn't signal runtime errors?"
|
|
}
|
|
]
|
|
}
|