| Index: tests/lib/convert/utf82_test.dart
|
| diff --git a/tests/lib/convert/utf82_test.dart b/tests/lib/convert/utf82_test.dart
|
| index b52f240ccdabc98b5a1f2b75c9ab6d4c92aa1fb7..e3a581153e3ba382f56d4fb1d20474d860ad3236 100644
|
| --- a/tests/lib/convert/utf82_test.dart
|
| +++ b/tests/lib/convert/utf82_test.dart
|
| @@ -50,7 +50,13 @@ final TESTS = [
|
| [ 0xC0, 0x80 ],
|
| [ 0xC1, 0x80 ],
|
| // Outside valid range.
|
| - [ 0xF4, 0xBF, 0xBF, 0xBF ]];
|
| + [ 0xF4, 0xBF, 0xBF, 0xBF ],
|
| + // Negative
|
| + [ -0x01 ],
|
| + [ -0xFF ],
|
| + [ -0x80000000 ],
|
| + [ -0x40000000 ],
|
| + [ -0x80000000000000000]];
|
|
|
| final TESTS2 = [
|
| // Test that 0xC0|1, 0x80 does not eat the next character.
|
|
|