Skip to content

Commit

Permalink
Create tickets for ignored test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
catamorphism committed Jun 27, 2024
1 parent ecfa426 commit 3503550
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion testdata/message2/icu-test-previous-release.json
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
"src": ".match {$foo :number} 1 {{one}} * {{other}}",
"params": { "foo": "1" },
"exp": "one",
"ignoreJava": "ICU4J :number doesn't convert string to number?"
"ignoreJava": "See ICU-22809"
},
{
"src": ".match {$foo :string} 1 {{one}} * {{other}}",
Expand Down
4 changes: 2 additions & 2 deletions testdata/message2/more-functions.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,15 +101,15 @@
"locale": "ro",
"params": {"val": 1234567890123456789},
"comment": "Rounded due to JSON not supporting full 64-bit ints",
"ignoreJava": "Different rounding behavior"
"ignoreJava": "See https://unicode-org.atlassian.net/browse/ICU-22754?focusedCommentId=175932"
},
{
"src": "Default int64: {$val}!",
"exp": "Default int64: 1.234.567.890.123.456.770!",
"locale": "ro",
"params": {"val": 1234567890123456789},
"comment": "Rounded due to JSON not supporting full 64-bit ints",
"ignoreCpp": "Different rounding behavior"
"ignoreCpp": "See https://unicode-org.atlassian.net/browse/ICU-22754?focusedCommentId=175932"
},
{
"src": "Default number: {$val}!",
Expand Down
2 changes: 1 addition & 1 deletion testdata/message2/spec/test-functions.json
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@
"src": ".match {$foo :string} 1 {{one}} * {{other}}",
"params": { "foo": 1 },
"exp": "one",
"ignoreJava": "Wrong result? :string should stringify input"
"ignoreJava": "See https://unicode-org.atlassian.net/browse/ICU-22754?focusedCommentId=175933"
},
{
"src": ".match {$foo :string} 1 {{one}} * {{other}}",
Expand Down
16 changes: 8 additions & 8 deletions testdata/message2/valid-tests.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,21 +47,21 @@
{ "src": "{0}", "exp": "0"},
{ "src": "{0.0123}", "exp": "0.0123"},
{ "src": "{1.234e5}", "exp": "1.234e5",
"ignoreJava": "ICU4J bug? Unannotated literal shouldn't be formatted as a number"},
"ignoreJava": "See ICU-22810"},
{ "src": "{1.234E5}", "exp": "1.234E5",
"ignoreJava": "ICU4J bug? Unannotated literal shouldn't be formatted as a number"},
"ignoreJava": "See ICU-22810"},
{ "src": "{1.234E+5}", "exp": "1.234E+5",
"ignoreJava": "ICU4J bug? Unannotated literal shouldn't be formatted as a number"},
"ignoreJava": "See ICU-22810"},
{ "src": "{1.234e-5}", "exp": "1.234e-5",
"ignoreJava": "ICU4J bug? Unannotated literal shouldn't be formatted as a number"},
"ignoreJava": "See ICU-22810"},
{ "src": "{42e5}", "exp": "42e5",
"ignoreJava": "ICU4J bug? Unannotated literal shouldn't be formatted as a number"},
"ignoreJava": "See ICU-22810"},
{ "src": "{42e0}", "exp": "42e0",
"ignoreJava": "ICU4J bug? Unannotated literal shouldn't be formatted as a number"},
"ignoreJava": "See ICU-22810"},
{ "src": "{42e000}", "exp": "42e000",
"ignoreJava": "ICU4J bug? Unannotated literal shouldn't be formatted as a number"},
"ignoreJava": "See ICU-22810"},
{ "src": "{42e369}", "exp": "42e369",
"ignoreJava": "ICU4J bug? Unannotated literal shouldn't be formatted as a number"},
"ignoreJava": "See ICU-22810"},
{ "src": "hello {|3| :number }", "exp": "hello 3" },
{ "src": "{:foo}", "errors": [{ "type": "missing-func" }],
"ignoreJava": "See https://github.com/unicode-org/message-format-wg/issues/782" },
Expand Down

0 comments on commit 3503550

Please sign in to comment.