Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1059)

Unified Diff: runtime/vm/unicode_test.cc

Issue 2481873005: clang-format runtime/vm (Closed)
Patch Set: Merge Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/unicode_data.cc ('k') | runtime/vm/unit_test.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/unicode_test.cc
diff --git a/runtime/vm/unicode_test.cc b/runtime/vm/unicode_test.cc
index 36fdf8509f565285086b7e162aa4f0f6f2efe5f1..c8f6a26bf1bbe2702e1d3058e83705c7c885b04e 100644
--- a/runtime/vm/unicode_test.cc
+++ b/runtime/vm/unicode_test.cc
@@ -12,7 +12,7 @@ TEST_CASE(Utf8Decode) {
// Examples from the Unicode specification, chapter 3
{
const char* src = "\x41\xC3\xB1\x42";
- int32_t expected[] = { 0x41, 0xF1, 0x42 };
+ int32_t expected[] = {0x41, 0xF1, 0x42};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -22,7 +22,7 @@ TEST_CASE(Utf8Decode) {
{
const char* src = "\x4D";
- int32_t expected[] = { 0x4D };
+ int32_t expected[] = {0x4D};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -32,7 +32,7 @@ TEST_CASE(Utf8Decode) {
{
const char* src = "\xD0\xB0";
- int32_t expected[] = { 0x430 };
+ int32_t expected[] = {0x430};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -42,7 +42,7 @@ TEST_CASE(Utf8Decode) {
{
const char* src = "\xE4\xBA\x8C";
- int32_t expected[] = { 0x4E8C };
+ int32_t expected[] = {0x4E8C};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -52,7 +52,7 @@ TEST_CASE(Utf8Decode) {
{
const char* src = "\xF0\x90\x8C\x82";
- int32_t expected[] = { 0x10302 };
+ int32_t expected[] = {0x10302};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -62,7 +62,7 @@ TEST_CASE(Utf8Decode) {
{
const char* src = "\x4D\xD0\xB0\xE4\xBA\x8C\xF0\x90\x8C\x82";
- int32_t expected[] = { 0x4D, 0x430, 0x4E8C, 0x10302 };
+ int32_t expected[] = {0x4D, 0x430, 0x4E8C, 0x10302};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -72,12 +72,12 @@ TEST_CASE(Utf8Decode) {
// Mixture of non-ASCII and ASCII characters
{
- const char* src = "\xD7\x92\xD7\x9C\xD7\xA2\xD7\x93"
- "\x20"
- "\xD7\x91\xD7\xA8\xD7\x9B\xD7\x94";
- int32_t expected[] = { 0x5D2, 0x5DC, 0x5E2, 0x5D3,
- 0x20,
- 0x5D1, 0x5E8, 0x5DB, 0x5D4 };
+ const char* src =
+ "\xD7\x92\xD7\x9C\xD7\xA2\xD7\x93"
+ "\x20"
+ "\xD7\x91\xD7\xA8\xD7\x9B\xD7\x94";
+ int32_t expected[] = {0x5D2, 0x5DC, 0x5E2, 0x5D3, 0x20,
+ 0x5D1, 0x5E8, 0x5DB, 0x5D4};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -90,7 +90,7 @@ TEST_CASE(Utf8Decode) {
// 1 - Some correct UTF-8 text
{
const char* src = "\xCE\xBA\xE1\xBD\xB9\xCF\x83\xCE\xBC\xCE\xB5";
- int32_t expected[] = { 0x3BA, 0x1F79, 0x3C3, 0x3BC, 0x3B5 };
+ int32_t expected[] = {0x3BA, 0x1F79, 0x3C3, 0x3BC, 0x3B5};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -105,7 +105,7 @@ TEST_CASE(Utf8Decode) {
// 2.1.1 - 1 byte (U-00000000): "\x00"
{
const char* src = "\x00";
- int32_t expected[] = { 0x0 };
+ int32_t expected[] = {0x0};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0xFF, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -116,7 +116,7 @@ TEST_CASE(Utf8Decode) {
// 2.1.2 - 2 bytes (U-00000080): "\xC2\x80"
{
const char* src = "\xC2\x80";
- int32_t expected[] = { 0x80 };
+ int32_t expected[] = {0x80};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -127,7 +127,7 @@ TEST_CASE(Utf8Decode) {
// 2.1.3 - 3 bytes (U-00000800): "\xE0\xA0\x80"
{
const char* src = "\xE0\xA0\x80";
- int32_t expected[] = { 0x800 };
+ int32_t expected[] = {0x800};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -138,7 +138,7 @@ TEST_CASE(Utf8Decode) {
// 2.1.4 - 4 bytes (U-00010000): "\xF0\x90\x80\x80"
{
const char* src = "\xF0\x90\x80\x80";
- int32_t expected[] = { 0x10000 };
+ int32_t expected[] = {0x10000};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -149,7 +149,7 @@ TEST_CASE(Utf8Decode) {
// 2.1.5 - 5 bytes (U-00200000): "\xF8\x88\x80\x80\x80"
{
const char* src = "\xF8\x88\x80\x80\x80";
- int32_t expected[] = { 0x200000 };
+ int32_t expected[] = {0x200000};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -160,7 +160,7 @@ TEST_CASE(Utf8Decode) {
// 2.1.6 - 6 bytes (U-04000000): "\xFC\x84\x80\x80\x80\x80"
{
const char* src = "\xFC\x84\x80\x80\x80\x80";
- int32_t expected[] = { 0x400000 };
+ int32_t expected[] = {0x400000};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -173,7 +173,7 @@ TEST_CASE(Utf8Decode) {
// 2.2.1 - 1 byte (U-0000007F): "\x7F"
{
const char* src = "\x7F";
- int32_t expected[] = { 0x7F };
+ int32_t expected[] = {0x7F};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -184,7 +184,7 @@ TEST_CASE(Utf8Decode) {
// 2.2.2 - 2 bytes (U-000007FF): "\xDF\xBF"
{
const char* src = "\xDF\xBF";
- int32_t expected[] = { 0x7FF };
+ int32_t expected[] = {0x7FF};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -195,7 +195,7 @@ TEST_CASE(Utf8Decode) {
// 2.2.3 - 3 bytes (U-0000FFFF): "\xEF\xBF\xBF"
{
const char* src = "\xEF\xBF\xBF";
- int32_t expected[] = { 0xFFFF };
+ int32_t expected[] = {0xFFFF};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -206,7 +206,7 @@ TEST_CASE(Utf8Decode) {
// 2.2.4 - 4 bytes (U-001FFFFF): "\xF7\xBF\xBF\xBF"
{
const char* src = "\xF7\xBF\xBF\xBF";
- int32_t expected[] = { 0x1FFFF };
+ int32_t expected[] = {0x1FFFF};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -217,7 +217,7 @@ TEST_CASE(Utf8Decode) {
// 2.2.5 - 5 bytes (U-03FFFFFF): "\xFB\xBF\xBF\xBF\xBF"
{
const char* src = "\xFB\xBF\xBF\xBF\xBF";
- int32_t expected[] = { 0x3FFFFFF };
+ int32_t expected[] = {0x3FFFFFF};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -228,7 +228,7 @@ TEST_CASE(Utf8Decode) {
// 2.2.6 - 6 bytes (U-7FFFFFFF): "\xFD\xBF\xBF\xBF\xBF\xBF"
{
const char* src = "\xFD\xBF\xBF\xBF\xBF\xBF";
- int32_t expected[] = { 0x7FFFFFF };
+ int32_t expected[] = {0x7FFFFFF};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -241,7 +241,7 @@ TEST_CASE(Utf8Decode) {
// 2.3.1 - U-0000D7FF = ed 9f bf = "\xED\x9F\xBF"
{
const char* src = "\xED\x9F\xBF";
- int32_t expected[] = { 0xD7FF };
+ int32_t expected[] = {0xD7FF};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -252,7 +252,7 @@ TEST_CASE(Utf8Decode) {
// 2.3.2 - U-0000E000 = ee 80 80 = "\xEE\x80\x80"
{
const char* src = "\xEE\x80\x80";
- int32_t expected[] = { 0xE000 };
+ int32_t expected[] = {0xE000};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -263,7 +263,7 @@ TEST_CASE(Utf8Decode) {
// 2.3.3 - U-0000FFFD = ef bf bd = "\xEF\xBF\xBD"
{
const char* src = "\xEF\xBF\xBD";
- int32_t expected[] = { 0xFFFD };
+ int32_t expected[] = {0xFFFD};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -274,7 +274,7 @@ TEST_CASE(Utf8Decode) {
// 2.3.4 - U-0010FFFF = f4 8f bf bf = "\xF4\x8F\xBF\xBF"
{
const char* src = "\xF4\x8F\xBF\xBF";
- int32_t expected[] = { 0x10FFFF };
+ int32_t expected[] = {0x10FFFF};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -285,7 +285,7 @@ TEST_CASE(Utf8Decode) {
// 2.3.5 - U-00110000 = f4 90 80 80 = "\xF4\x90\x80\x80"
{
const char* src = "\xF4\x90\x80\x80";
- int32_t expected[] = { 0x110000 };
+ int32_t expected[] = {0x110000};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -300,7 +300,7 @@ TEST_CASE(Utf8Decode) {
// 3.1.1 - First continuation byte 0x80: "\x80"
{
const char* src = "\x80";
- int32_t expected[] = { 0x80 };
+ int32_t expected[] = {0x80};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -311,7 +311,7 @@ TEST_CASE(Utf8Decode) {
// 3.1.2 - Last continuation byte 0xbf: "\xBF"
{
const char* src = "\xBF";
- int32_t expected[] = { 0xBF };
+ int32_t expected[] = {0xBF};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -322,7 +322,7 @@ TEST_CASE(Utf8Decode) {
// 3.1.3 - 2 continuation bytes: "\x80\xBF"
{
const char* src = "\x80\xBF";
- int32_t expected[] = { 0x80, 0xBF };
+ int32_t expected[] = {0x80, 0xBF};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -333,7 +333,7 @@ TEST_CASE(Utf8Decode) {
// 3.1.4 - 3 continuation bytes: "\x80\xBF\x80"
{
const char* src = "\x80\xBF\x80";
- int32_t expected[] = { 0x80, 0xBF, 0x80 };
+ int32_t expected[] = {0x80, 0xBF, 0x80};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -344,7 +344,7 @@ TEST_CASE(Utf8Decode) {
// 3.1.5 - 4 continuation bytes: "\x80\xBF\x80\xBF"
{
const char* src = "\x80\xBF\x80\xBF";
- int32_t expected[] = { 0x80, 0xBF, 0x80, 0xBF };
+ int32_t expected[] = {0x80, 0xBF, 0x80, 0xBF};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -355,7 +355,7 @@ TEST_CASE(Utf8Decode) {
// 3.1.6 - 5 continuation bytes: "\x80\xBF\x80\xBF\x80"
{
const char* src = "\x80\xBF\x80\xBF\x80";
- int32_t expected[] = { 0x80, 0xBF, 0x80, 0xBF, 0x80 };
+ int32_t expected[] = {0x80, 0xBF, 0x80, 0xBF, 0x80};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -366,7 +366,7 @@ TEST_CASE(Utf8Decode) {
// 3.1.7 - 6 continuation bytes: "\x80\xBF\x80\xBF\x80\xBF"
{
const char* src = "\x80\xBF\x80\xBF\x80\xBF";
- int32_t expected[] = { 0x80, 0xBF, 0x80, 0xBF, 0x80, 0xBF };
+ int32_t expected[] = {0x80, 0xBF, 0x80, 0xBF, 0x80, 0xBF};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -377,7 +377,7 @@ TEST_CASE(Utf8Decode) {
// 3.1.8 - 7 continuation bytes: "\x80\xBF\x80\xBF\x80\xBF\x80"
{
const char* src = "\x80\xBF\x80\xBF\x80\xBF\x80";
- int32_t expected[] = { 0x80, 0xBF, 0x80, 0xBF, 0x80, 0xBF, 0x80 };
+ int32_t expected[] = {0x80, 0xBF, 0x80, 0xBF, 0x80, 0xBF, 0x80};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -387,15 +387,16 @@ TEST_CASE(Utf8Decode) {
// 3.1.9 - Sequence of all 64 possible continuation bytes (0x80-0xbf):
{
- const char* src = "\x80\x81\x82\x83\x84\x85\x86\x87"
- "\x88\x89\x8A\x8B\x8C\x8D\x8E\x8F"
- "\x90\x91\x92\x93\x94\x95\x96\x97"
- "\x98\x99\x9A\x9B\x9C\x9D\x9E\x9F"
- "\xA0\xA1\xA2\xA3\xA4\xA5\xA6\xA7"
- "\xA8\xA9\xAA\xAB\xAC\xAD\xAE\xAF"
- "\xB0\xB1\xB2\xB3\xB4\xB5\xB6\xB7"
- "\xB8\xB9\xBA\xBB\xBC\xBD\xBE\xBF";
- int32_t expected[] = { 0x0 };
+ const char* src =
+ "\x80\x81\x82\x83\x84\x85\x86\x87"
+ "\x88\x89\x8A\x8B\x8C\x8D\x8E\x8F"
+ "\x90\x91\x92\x93\x94\x95\x96\x97"
+ "\x98\x99\x9A\x9B\x9C\x9D\x9E\x9F"
+ "\xA0\xA1\xA2\xA3\xA4\xA5\xA6\xA7"
+ "\xA8\xA9\xAA\xAB\xAC\xAD\xAE\xAF"
+ "\xB0\xB1\xB2\xB3\xB4\xB5\xB6\xB7"
+ "\xB8\xB9\xBA\xBB\xBC\xBD\xBE\xBF";
+ int32_t expected[] = {0x0};
int32_t dst[ARRAY_SIZE(expected)];
for (size_t i = 0; i < strlen(src); ++i) {
memset(dst, 0xFF, sizeof(dst));
@@ -410,15 +411,16 @@ TEST_CASE(Utf8Decode) {
// 3.2.1 - All 32 first bytes of 2-byte sequences (0xc0-0xdf), each
// followed by a space character:
{
- const char* src = "\xC0\x20\xC1\x20\xC2\x20\xC3\x20"
- "\xC4\x20\xC5\x20\xC6\x20\xC7\x20"
- "\xC8\x20\xC9\x20\xCA\x20\xCB\x20"
- "\xCC\x20\xCD\x20\xCE\x20\xCF\x20"
- "\xD0\x20\xD1\x20\xD2\x20\xD3\x20"
- "\xD4\x20\xD5\x20\xD6\x20\xD7\x20"
- "\xD8\x20\xD9\x20\xDA\x20\xDB\x20"
- "\xDC\x20\xDD\x20\xDE\x20\xDF\x20";
- int32_t expected[] = { 0x0 };
+ const char* src =
+ "\xC0\x20\xC1\x20\xC2\x20\xC3\x20"
+ "\xC4\x20\xC5\x20\xC6\x20\xC7\x20"
+ "\xC8\x20\xC9\x20\xCA\x20\xCB\x20"
+ "\xCC\x20\xCD\x20\xCE\x20\xCF\x20"
+ "\xD0\x20\xD1\x20\xD2\x20\xD3\x20"
+ "\xD4\x20\xD5\x20\xD6\x20\xD7\x20"
+ "\xD8\x20\xD9\x20\xDA\x20\xDB\x20"
+ "\xDC\x20\xDD\x20\xDE\x20\xDF\x20";
+ int32_t expected[] = {0x0};
int32_t dst[ARRAY_SIZE(expected)];
for (size_t i = 0; i < strlen(src); i += 2) {
memset(dst, 0xFF, sizeof(dst));
@@ -431,11 +433,12 @@ TEST_CASE(Utf8Decode) {
// 3.2.2 - All 16 first bytes of 3-byte sequences (0xe0-0xef), each
// followed by a space character:
{
- const char* src = "\xE0\x20\xE1\x20\xE2\x20\xE3\x20"
- "\xE4\x20\xE5\x20\xE6\x20\xE7\x20"
- "\xE8\x20\xE9\x20\xEA\x20\xEB\x20"
- "\xEC\x20\xED\x20\xEE\x20\xEF\x20";
- int32_t expected[] = { 0x0 };
+ const char* src =
+ "\xE0\x20\xE1\x20\xE2\x20\xE3\x20"
+ "\xE4\x20\xE5\x20\xE6\x20\xE7\x20"
+ "\xE8\x20\xE9\x20\xEA\x20\xEB\x20"
+ "\xEC\x20\xED\x20\xEE\x20\xEF\x20";
+ int32_t expected[] = {0x0};
int32_t dst[ARRAY_SIZE(expected)];
for (size_t i = 0; i < strlen(src); i += 2) {
memset(dst, 0xFF, sizeof(dst));
@@ -448,9 +451,10 @@ TEST_CASE(Utf8Decode) {
// 3.2.3 - All 8 first bytes of 4-byte sequences (0xf0-0xf7), each
// followed by a space character:
{
- const char* src = "\xF0\x20\xF1\x20\xF2\x20\xF3\x20"
- "\xF4\x20\xF5\x20\xF6\x20\xF7\x20";
- int32_t expected[] = { 0x0 };
+ const char* src =
+ "\xF0\x20\xF1\x20\xF2\x20\xF3\x20"
+ "\xF4\x20\xF5\x20\xF6\x20\xF7\x20";
+ int32_t expected[] = {0x0};
int32_t dst[ARRAY_SIZE(expected)];
for (size_t i = 0; i < strlen(src); i += 2) {
memset(dst, 0xFF, sizeof(dst));
@@ -464,7 +468,7 @@ TEST_CASE(Utf8Decode) {
// followed by a space character:
{
const char* src = "\xF8\x20\xF9\x20\xFA\x20\xFB\x20";
- int32_t expected[] = { 0x0 };
+ int32_t expected[] = {0x0};
int32_t dst[ARRAY_SIZE(expected)];
for (size_t i = 0; i < strlen(src); i += 2) {
memset(dst, 0xFF, sizeof(dst));
@@ -478,7 +482,7 @@ TEST_CASE(Utf8Decode) {
// followed by a space character:
{
const char* src = "\xFC\x20\xFD\x20";
- int32_t expected[] = { 0x0 };
+ int32_t expected[] = {0x0};
int32_t dst[ARRAY_SIZE(expected)];
for (size_t i = 0; i < strlen(src); i += 2) {
memset(dst, 0xFF, sizeof(dst));
@@ -493,7 +497,7 @@ TEST_CASE(Utf8Decode) {
// 3.3.1 - 2-byte sequence with last byte missing (U+0000): "\xC0"
{
const char* src = "\xC0";
- int32_t expected[] = { 0x0 };
+ int32_t expected[] = {0x0};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0xFF, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -504,7 +508,7 @@ TEST_CASE(Utf8Decode) {
// 3.3.2 - 3-byte sequence with last byte missing (U+0000): "\xE0\x80"
{
const char* src = "\xE0\x80";
- int32_t expected[] = { 0x0 };
+ int32_t expected[] = {0x0};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0xFF, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -515,7 +519,7 @@ TEST_CASE(Utf8Decode) {
// 3.3.3 - 4-byte sequence with last byte missing (U+0000): "\xF0\x80\x80"
{
const char* src = "\xF0\x80\x80";
- int32_t expected[] = { 0x0 };
+ int32_t expected[] = {0x0};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0xFF, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -526,7 +530,7 @@ TEST_CASE(Utf8Decode) {
// 3.3.4 - 5-byte sequence with last byte missing (U+0000): "\xF8\x80\x80\x80"
{
const char* src = "\xF8\x80\x80\x80";
- int32_t expected[] = { 0x0 };
+ int32_t expected[] = {0x0};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0xFF, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -538,7 +542,7 @@ TEST_CASE(Utf8Decode) {
// "\xFC\x80\x80\x80\x80"
{
const char* src = "\xFC\x80\x80\x80\x80";
- int32_t expected[] = { 0x0 };
+ int32_t expected[] = {0x0};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0xFF, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -549,7 +553,7 @@ TEST_CASE(Utf8Decode) {
// 3.3.6 - 2-byte sequence with last byte missing (U-000007FF): "\xDF"
{
const char* src = "\xDF";
- int32_t expected[] = { 0x0 };
+ int32_t expected[] = {0x0};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0xFF, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -560,7 +564,7 @@ TEST_CASE(Utf8Decode) {
// 3.3.7 - 3-byte sequence with last byte missing (U-0000FFFF): "\xEF\xBF"
{
const char* src = "\xEF\xBF";
- int32_t expected[] = { 0x0 };
+ int32_t expected[] = {0x0};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0xFF, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -571,7 +575,7 @@ TEST_CASE(Utf8Decode) {
// 3.3.8 - 4-byte sequence with last byte missing (U-001FFFFF): "\xF7\xBF\xBF"
{
const char* src = "\xF7\xBF\xBF";
- int32_t expected[] = { 0x0 };
+ int32_t expected[] = {0x0};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0xFF, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -583,7 +587,7 @@ TEST_CASE(Utf8Decode) {
// "\xFB\xBF\xBF\xBF"
{
const char* src = "\xFB\xBF\xBF\xBF";
- int32_t expected[] = { 0x0 };
+ int32_t expected[] = {0x0};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0xFF, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -595,7 +599,7 @@ TEST_CASE(Utf8Decode) {
// "\xFD\xBF\xBF\xBF\xBF"
{
const char* src = "\xFD\xBF\xBF\xBF\xBF";
- int32_t expected[] = { 0x0 };
+ int32_t expected[] = {0x0};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0xFF, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -605,18 +609,19 @@ TEST_CASE(Utf8Decode) {
// 3.4 - Concatenation of incomplete sequences
{
- const char* src = "\xC0\xE0\x80\xF0\x80\x80"
- "\xF8\x80\x80\x80\xFC\x80"
- "\x80\x80\x80\xDF\xEF\xBF"
- "\xF7\xBF\xBF\xFB\xBF\xBF"
- "\xBF\xFD\xBF\xBF\xBF\xBF";
- int32_t expected[] = { 0x0 };
+ const char* src =
+ "\xC0\xE0\x80\xF0\x80\x80"
+ "\xF8\x80\x80\x80\xFC\x80"
+ "\x80\x80\x80\xDF\xEF\xBF"
+ "\xF7\xBF\xBF\xFB\xBF\xBF"
+ "\xBF\xFD\xBF\xBF\xBF\xBF";
+ int32_t expected[] = {0x0};
int32_t dst[ARRAY_SIZE(expected)];
for (size_t i = 0; i < strlen(src); ++i) {
for (size_t j = 1; j < (strlen(src) - i); ++j) {
memset(dst, 0xFF, sizeof(dst));
- bool is_valid = Utf8::DecodeCStringToUTF32(&src[i],
- dst, ARRAY_SIZE(dst));
+ bool is_valid =
+ Utf8::DecodeCStringToUTF32(&src[i], dst, ARRAY_SIZE(dst));
EXPECT(!is_valid);
EXPECT(memcmp(expected, dst, sizeof(expected)));
}
@@ -628,7 +633,7 @@ TEST_CASE(Utf8Decode) {
// 3.5.1 - fe = "\xFE"
{
const char* src = "\xFE";
- int32_t expected[] = { 0xFE };
+ int32_t expected[] = {0xFE};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -639,7 +644,7 @@ TEST_CASE(Utf8Decode) {
// 3.5.2 - ff = "\xFF"
{
const char* src = "\xFF";
- int32_t expected[] = { 0xFF };
+ int32_t expected[] = {0xFF};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -650,7 +655,7 @@ TEST_CASE(Utf8Decode) {
// 3.5.3 - fe fe ff ff = "\xFE\xFE\xFF\xFF"
{
const char* src = "\xFE\xFE\xFF\xFF";
- int32_t expected[] = { 0xFF };
+ int32_t expected[] = {0xFF};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -665,7 +670,7 @@ TEST_CASE(Utf8Decode) {
// 4.1.1 - U+002F = c0 af = "\xC0\xAF"
{
const char* src = "\xC0\xAF";
- int32_t expected[] = { 0x2F };
+ int32_t expected[] = {0x2F};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -676,7 +681,7 @@ TEST_CASE(Utf8Decode) {
// 4.1.2 - U+002F = e0 80 af = "\xE0\x80\xAF"
{
const char* src = "\xE0\x80\xAF";
- int32_t expected[] = { 0x2F };
+ int32_t expected[] = {0x2F};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -687,7 +692,7 @@ TEST_CASE(Utf8Decode) {
// 4.1.3 - U+002F = f0 80 80 af = "\xF0\x80\x80\xAF"
{
const char* src = "\xF0\x80\x80\xAF";
- int32_t expected[] = { 0x2F };
+ int32_t expected[] = {0x2F};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -698,7 +703,7 @@ TEST_CASE(Utf8Decode) {
// 4.1.4 - U+002F = f8 80 80 80 af = "\xF8\x80\x80\x80\xAF"
{
const char* src = "\xF8\x80\x80\x80\xAF";
- int32_t expected[] = { 0x2F };
+ int32_t expected[] = {0x2F};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -709,7 +714,7 @@ TEST_CASE(Utf8Decode) {
// 4.1.5 - U+002F = fc 80 80 80 80 af = "\xFC\x80\x80\x80\x80\xAF"
{
const char* src = "\xFC\x80\x80\x80\x80\xAF";
- int32_t expected[] = { 0x2F };
+ int32_t expected[] = {0x2F};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -722,7 +727,7 @@ TEST_CASE(Utf8Decode) {
// 4.2.1 - U-0000007F = c1 bf = "\xC1\xBF"
{
const char* src = "\xC1\xBF";
- int32_t expected[] = { 0x7F };
+ int32_t expected[] = {0x7F};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -733,7 +738,7 @@ TEST_CASE(Utf8Decode) {
// 4.2.2 U+000007FF = e0 9f bf = "\xE0\x9F\xBF"
{
const char* src = "\xE0\x9F\xBF";
- int32_t expected[] = { 0x7FF };
+ int32_t expected[] = {0x7FF};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -744,7 +749,7 @@ TEST_CASE(Utf8Decode) {
// 4.2.3 - U+0000FFFF = f0 8f bf bf = "\xF0\x8F\xBF\xBF"
{
const char* src = "\xF0\x8F\xBF\xBF";
- int32_t expected[] = { 0xFFFF };
+ int32_t expected[] = {0xFFFF};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -755,7 +760,7 @@ TEST_CASE(Utf8Decode) {
// 4.2.4 U-001FFFFF = f8 87 bf bf bf = "\xF8\x87\xBF\xBF\xBF"
{
const char* src = "\xF8\x87\xBF\xBF\xBF";
- int32_t expected[] = { 0x1FFFFF };
+ int32_t expected[] = {0x1FFFFF};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -766,7 +771,7 @@ TEST_CASE(Utf8Decode) {
// 4.2.5 U-03FFFFFF = fc 83 bf bf bf bf = "\xFC\x83\xBF\xBF\xBF\xBF"
{
const char* src = "\xFC\x83\xBF\xBF\xBF\xBF";
- int32_t expected[] = { 0x3FFFFFF };
+ int32_t expected[] = {0x3FFFFFF};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -779,7 +784,7 @@ TEST_CASE(Utf8Decode) {
// 4.3.1 - U+0000 = "\xC0\x80"
{
const char* src = "\xC0\x80";
- int32_t expected[] = { 0x0 };
+ int32_t expected[] = {0x0};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0xFF, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -790,7 +795,7 @@ TEST_CASE(Utf8Decode) {
// 4.3.2 U+0000 = e0 80 80 = "\xE0\x80\x80"
{
const char* src = "\xE0\x80\x80";
- int32_t expected[] = { 0x0 };
+ int32_t expected[] = {0x0};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0xFF, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -801,7 +806,7 @@ TEST_CASE(Utf8Decode) {
// 4.3.3 U+0000 = f0 80 80 80 = "\xF0\x80\x80\x80"
{
const char* src = "\xF0\x80\x80\x80";
- int32_t expected[] = { 0x0 };
+ int32_t expected[] = {0x0};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0xFF, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -812,7 +817,7 @@ TEST_CASE(Utf8Decode) {
// 4.3.4 U+0000 = f8 80 80 80 80 = "\xF8\x80\x80\x80\x80"
{
const char* src = "\xF8\x80\x80\x80\x80";
- int32_t expected[] = { 0x0 };
+ int32_t expected[] = {0x0};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0xFF, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -823,7 +828,7 @@ TEST_CASE(Utf8Decode) {
// 4.3.5 U+0000 = fc 80 80 80 80 80 = "\xFC\x80\x80\x80\x80\x80"
{
const char* src = "\xFC\x80\x80\x80\x80\x80";
- int32_t expected[] = { 0x0 };
+ int32_t expected[] = {0x0};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0xFF, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -838,7 +843,7 @@ TEST_CASE(Utf8Decode) {
// 5.1.1 - U+D800 = ed a0 80 = "\xED\xA0\x80"
{
const char* src = "\xED\xA0\x80";
- int32_t expected[] = { 0xD800 };
+ int32_t expected[] = {0xD800};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -849,7 +854,7 @@ TEST_CASE(Utf8Decode) {
// 5.1.2 - U+DB7F = ed ad bf = "\xED\xAD\xBF"
{
const char* src = "\xED\xAD\xBF";
- int32_t expected[] = { 0xDB7F };
+ int32_t expected[] = {0xDB7F};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -860,7 +865,7 @@ TEST_CASE(Utf8Decode) {
// 5.1.3 - U+DB80 = ed ae 80 = "\xED\xAE\x80"
{
const char* src = "\xED\xAE\x80";
- int32_t expected[] = { 0xDB80 };
+ int32_t expected[] = {0xDB80};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -871,7 +876,7 @@ TEST_CASE(Utf8Decode) {
// 5.1.4 - U+DBFF = ed af bf = "\xED\xAF\xBF"
{
const char* src = "\xED\xAF\xBF";
- int32_t expected[] = { 0xDBFF };
+ int32_t expected[] = {0xDBFF};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -882,7 +887,7 @@ TEST_CASE(Utf8Decode) {
// 5.1.5 - U+DC00 = ed b0 80 = "\xED\xB0\x80"
{
const char* src = "\xED\xB0\x80";
- int32_t expected[] = { 0xDC00 };
+ int32_t expected[] = {0xDC00};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -893,7 +898,7 @@ TEST_CASE(Utf8Decode) {
// 5.1.6 - U+DF80 = ed be 80 = "\xED\xBE\x80"
{
const char* src = "\xED\xBE\x80";
- int32_t expected[] = { 0xDF80 };
+ int32_t expected[] = {0xDF80};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -904,7 +909,7 @@ TEST_CASE(Utf8Decode) {
// 5.1.7 - U+DFFF = ed bf bf = "\xED\xBF\xBF"
{
const char* src = "\xED\xBF\xBF";
- int32_t expected[] = { 0xDFFF };
+ int32_t expected[] = {0xDFFF};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -922,7 +927,7 @@ TEST_CASE(Utf8Decode) {
// 5.2.1 - U+D800 U+DC00 = ed a0 80 ed b0 80 = "\xED\xA0\x80\xED\xB0\x80"
{
const char* src = "\xED\xA0\x80\xED\xB0\x80";
- int32_t expected[] = { 0xD800, 0xDC00 };
+ int32_t expected[] = {0xD800, 0xDC00};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -933,7 +938,7 @@ TEST_CASE(Utf8Decode) {
// 5.2.2 - U+D800 U+DFFF = ed a0 80 ed bf bf = "\xED\xA0\x80\xED\xBF\xBF"
{
const char* src = "\xED\xA0\x80\xED\xBF\xBF";
- int32_t expected[] = { 0xD800, 0xDFFF };
+ int32_t expected[] = {0xD800, 0xDFFF};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -944,7 +949,7 @@ TEST_CASE(Utf8Decode) {
// 5.2.3 - U+DB7F U+DC00 = ed a0 80 ed bf bf = "\xED\xAD\xBF\xED\xB0\x80"
{
const char* src = "\xED\xAD\xBF\xED\xB0\x80";
- int32_t expected[] = { 0xDB7F, 0xDC00 };
+ int32_t expected[] = {0xDB7F, 0xDC00};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -955,7 +960,7 @@ TEST_CASE(Utf8Decode) {
// 5.2.4 - U+DB7F U+DFFF = ed ad bf ed bf bf = "\xED\xAD\xBF\xED\xBF\xBF"
{
const char* src = "\xED\xAD\xBF\xED\xBF\xBF";
- int32_t expected[] = { 0xDB7F, 0xDFFF };
+ int32_t expected[] = {0xDB7F, 0xDFFF};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -966,7 +971,7 @@ TEST_CASE(Utf8Decode) {
// 5.2.5 - U+DB80 U+DC00 = ed ae 80 ed b0 80 = "\xED\xAE\x80\xED\xB0\x80"
{
const char* src = "\xED\xAE\x80\xED\xB0\x80";
- int32_t expected[] = { 0xDB80, 0xDC00 };
+ int32_t expected[] = {0xDB80, 0xDC00};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -977,7 +982,7 @@ TEST_CASE(Utf8Decode) {
// 5.2.6 - U+DB80 U+DFFF = ed ae 80 ed bf bf = "\xED\xAE\x80\xED\xBF\xBF"
{
const char* src = "\xED\xAE\x80\xED\xBF\xBF";
- int32_t expected[] = { 0xDB80, 0xDFFF };
+ int32_t expected[] = {0xDB80, 0xDFFF};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -988,7 +993,7 @@ TEST_CASE(Utf8Decode) {
// 5.2.7 - U+DBFF U+DC00 = ed af bf ed b0 80 = "\xED\xAF\xBF\xED\xB0\x80"
{
const char* src = "\xED\xAF\xBF\xED\xB0\x80";
- int32_t expected[] = { 0xDBFF, 0xDC00 };
+ int32_t expected[] = {0xDBFF, 0xDC00};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -999,7 +1004,7 @@ TEST_CASE(Utf8Decode) {
// 5.2.8 - U+DBFF U+DFFF = ed af bf ed bf bf = "\xED\xAF\xBF\xED\xBF\xBF"
{
const char* src = "\xED\xAF\xBF\xED\xBF\xBF";
- int32_t expected[] = { 0xDBFF, 0xDFFF };
+ int32_t expected[] = {0xDBFF, 0xDFFF};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -1012,7 +1017,7 @@ TEST_CASE(Utf8Decode) {
// 5.3.1 - U+FFFE = ef bf be = "\xEF\xBF\xBE"
{
const char* src = "\xEF\xBF\xBE";
- int32_t expected[] = { 0xFFFE };
+ int32_t expected[] = {0xFFFE};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
@@ -1023,7 +1028,7 @@ TEST_CASE(Utf8Decode) {
// 5.3.2 - U+FFFF = ef bf bf = "\xEF\xBF\xBF"
{
const char* src = "\xEF\xBF\xBF";
- int32_t expected[] = { 0xFFFF };
+ int32_t expected[] = {0xFFFF};
int32_t dst[ARRAY_SIZE(expected)];
memset(dst, 0, sizeof(dst));
bool is_valid = Utf8::DecodeCStringToUTF32(src, dst, ARRAY_SIZE(dst));
« no previous file with comments | « runtime/vm/unicode_data.cc ('k') | runtime/vm/unit_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698