diff --git a/conformance/binary_json_conformance_suite.cc b/conformance/binary_json_conformance_suite.cc index 4ce5379116a60..96012a10b0062 100644 --- a/conformance/binary_json_conformance_suite.cc +++ b/conformance/binary_json_conformance_suite.cc @@ -799,11 +799,15 @@ void BinaryAndJsonConformanceSuite::RunSuiteImpl() { {delim("\xF0\x9F\x98\x81"), "\"\xF0\x9F\x98\x81\""}, // emoji: 😁 {delim(""), "\"\""}, }); + TestValidDataForType(FieldDescriptor::TYPE_BYTES, { + {delim("\x01\x02"), "\"\x01\x02\""}, + {delim("\xfb"), "\"\xfb\""}, + {delim(""), "\"\""}, + }); // TODO(haberman): // TestValidDataForType(FieldDescriptor::TYPE_GROUP // TestValidDataForType(FieldDescriptor::TYPE_MESSAGE - // TestValidDataForType(FieldDescriptor::TYPE_BYTES // TestValidDataForType(FieldDescriptor::TYPE_ENUM RunValidJsonTest("HelloWorld", REQUIRED, diff --git a/conformance/failure_list_php_c.txt b/conformance/failure_list_php_c.txt index 48a08a79c033c..f436365a1ed2d 100644 --- a/conformance/failure_list_php_c.txt +++ b/conformance/failure_list_php_c.txt @@ -44,3 +44,5 @@ Required.Proto3.ProtobufInput.ValidDataRepeated.FLOAT.JsonOutput Required.Proto3.JsonInput.RejectTopLevelNull Required.Proto3.ProtobufInput.ValidDataRepeated.STRING.JsonOutput Required.Proto3.ProtobufInput.ValidDataRepeated.STRING.ProtobufOutput +Required.Proto3.ProtobufInput.ValidDataRepeated.BYTES.JsonOutput +Required.Proto3.ProtobufInput.ValidDataRepeated.BYTES.ProtobufOutput