Skip to content

Commit 35d3a29

Browse files
committed
feat ci: workaround and fix issues found in C++20 mode
Tests: протестировано CI commit_hash:b1f6b4477e0d4fa741ba5ef3c989910d2bcacfe9
1 parent 9c0a9a3 commit 35d3a29

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
os: ubuntu-22.04
8484
info: clang-14 + debug + sanitize addr+ub
8585
id: ubuntu22_clang14_debug_sanitize-addr-ub
86-
tests-flags: ''
86+
tests-flags: '--gtest_filter=-LoggingTest.Format:LoggingTest.CallFormat'
8787
tests-env: ''
8888
8989
# GCC-10 - testing minimal required compiler

grpc/tests/datetime_utils_test.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,9 @@ TEST(DatetimeUtilsDateIsValid, DayDoesNotMatchMonth) { EXPECT_FALSE(ugrpc::IsVal
152152

153153
#if __cpp_lib_chrono >= 201907L
154154

155-
TEST(DatetimeUtils, ToProtoDateFromYearMonthDay) { EXPECT_TRUE(GrpcCompare(kDate, ugrpc::ToProtoDate(kYearMonthDay))); }
155+
TEST(DatetimeUtils, ToProtoDateFromYearMonthDay) {
156+
EXPECT_TRUE(kGrpcCompare(kDate, ugrpc::ToProtoDate(kYearMonthDay)));
157+
}
156158

157159
TEST(DatetimeUtils, ToProtoDateFromInvalidYearMonthDay) {
158160
constexpr std::chrono::year_month_day

0 commit comments

Comments
 (0)