Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable new tests until BSR update lands #119

Merged
merged 3 commits into from
Oct 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -118,24 +118,25 @@ message StringIPv4 {
message StringIPv6 {
string val = 1 [(buf.validate.field).string.ipv6 = true];
}
message StringIPWithPrefixLen {
string val = 1 [(buf.validate.field).string.ip_with_prefixlen = true];
}
message StringIPv4WithPrefixLen {
string val = 1 [(buf.validate.field).string.ipv4_with_prefixlen = true];
}
message StringIPv6WithPrefixLen {
string val = 1 [(buf.validate.field).string.ipv6_with_prefixlen = true];
}
message StringIPPrefix {
string val = 1 [(buf.validate.field).string.ip_prefix = true];
}
message StringIPv4Prefix {
string val = 1 [(buf.validate.field).string.ipv4_prefix = true];
}
message StringIPv6Prefix {
string val = 1 [(buf.validate.field).string.ipv6_prefix = true];
}

//message StringIPWithPrefixLen {
// string val = 1 [(buf.validate.field).string.ip_with_prefixlen = true];
//}
//message StringIPv4WithPrefixLen {
// string val = 1 [(buf.validate.field).string.ipv4_with_prefixlen = true];
//}
//message StringIPv6WithPrefixLen {
// string val = 1 [(buf.validate.field).string.ipv6_with_prefixlen = true];
//}
//message StringIPPrefix {
// string val = 1 [(buf.validate.field).string.ip_prefix = true];
//}
//message StringIPv4Prefix {
// string val = 1 [(buf.validate.field).string.ipv4_prefix = true];
//}
//message StringIPv6Prefix {
// string val = 1 [(buf.validate.field).string.ipv6_prefix = true];
//}
message StringURI {
string val = 1 [(buf.validate.field).string.uri = true];
}
Expand Down
Loading