-
Notifications
You must be signed in to change notification settings - Fork 15.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add editions-specific conformance tests
For now, these are limited to tests of text-form for delimited fields that locks down our problematic behavior in editions. Follow up changes will adjust the behavior to behave better under editions. PiperOrigin-RevId: 622211473
- Loading branch information
1 parent
7ab65a0
commit 8ab39ed
Showing
18 changed files
with
428 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
load("@rules_cc//cc:defs.bzl", "cc_proto_library", "objc_library") | ||
load("//:protobuf.bzl", "internal_csharp_proto_library", "internal_objc_proto_library", "internal_py_proto_library") | ||
load("//ruby:defs.bzl", "internal_ruby_proto_library") | ||
|
||
package( | ||
default_testonly = True, | ||
default_visibility = ["//conformance:__pkg__"], | ||
) | ||
|
||
proto_library( | ||
name = "test_messages_edition2023_proto", | ||
srcs = ["test_messages_edition2023.proto"], | ||
visibility = ["//visibility:public"], | ||
) | ||
|
||
cc_proto_library( | ||
name = "test_messages_edition2023_cc_proto", | ||
deps = [":test_messages_edition2023_proto"], | ||
) | ||
|
||
internal_csharp_proto_library( | ||
name = "test_messages_edition2023_csharp_proto", | ||
srcs = ["test_messages_edition2023.proto"], | ||
) | ||
|
||
java_proto_library( | ||
name = "test_messages_edition2023_java_proto", | ||
deps = [":test_messages_edition2023_proto"], | ||
) | ||
|
||
java_lite_proto_library( | ||
name = "test_messages_edition2023_java_proto_lite", | ||
deps = [":test_messages_edition2023_proto"], | ||
) | ||
|
||
internal_py_proto_library( | ||
name = "test_messages_edition2023_py_proto", | ||
srcs = ["test_messages_edition2023.proto"], | ||
srcs_version = "PY2AND3", | ||
) | ||
|
||
internal_objc_proto_library( | ||
name = "test_messages_edition2023_objc_proto", | ||
srcs = ["test_messages_edition2023.proto"], | ||
) | ||
|
||
internal_ruby_proto_library( | ||
name = "test_messages_edition2023_ruby_proto", | ||
srcs = ["test_messages_edition2023.proto"], | ||
) |
Oops, something went wrong.