Removing a test so that it is all ASCII.
This commit is contained in:
parent
2bb101bd19
commit
e7004cef76
|
@ -191,7 +191,6 @@ void test() {
|
||||||
"\xc3\xb1",
|
"\xc3\xb1",
|
||||||
"\xe2\x82\xa1",
|
"\xe2\x82\xa1",
|
||||||
"\xf0\x90\x8c\xbc",
|
"\xf0\x90\x8c\xbc",
|
||||||
"안녕하세요, 세상",
|
|
||||||
"\xc2\x80", // 6.7.2
|
"\xc2\x80", // 6.7.2
|
||||||
"\xf0\x90\x80\x80", // 6.7.4
|
"\xf0\x90\x80\x80", // 6.7.4
|
||||||
"\xee\x80\x80", // 6.11.2
|
"\xee\x80\x80", // 6.11.2
|
||||||
|
@ -223,7 +222,7 @@ void test() {
|
||||||
"\x80",
|
"\x80",
|
||||||
"\x91\x85\x95\x9e",
|
"\x91\x85\x95\x9e",
|
||||||
"\x6c\x02\x8e\x18"};
|
"\x6c\x02\x8e\x18"};
|
||||||
for (size_t i = 0; i < 9; i++) {
|
for (size_t i = 0; i < 8; i++) {
|
||||||
size_t len = strlen(goodsequences[i]);
|
size_t len = strlen(goodsequences[i]);
|
||||||
if (!simdjson::validate_utf8(goodsequences[i], len)) {
|
if (!simdjson::validate_utf8(goodsequences[i], len)) {
|
||||||
printf("bug goodsequences[%zu]\n", i);
|
printf("bug goodsequences[%zu]\n", i);
|
||||||
|
|
Loading…
Reference in New Issue