Skip to content

Commit 8636ab4

Browse files
upgrade ut to v2.3.0
1 parent 8679565 commit 8636ab4

File tree

4 files changed

+17
-23
lines changed

4 files changed

+17
-23
lines changed

include/hpp_proto/pb_serializer.hpp

-1
Original file line numberDiff line numberDiff line change
@@ -2031,7 +2031,6 @@ struct pb_serializer {
20312031
template <concepts::varint T, typename Item>
20322032
constexpr status deserialize_packed_varint([[maybe_unused]] std::uint32_t bytes_count, std::size_t size,
20332033
Item &item) {
2034-
using value_type = typename Item::value_type;
20352034
item.resize(size);
20362035
#if defined(__x86_64__) || defined(_M_AMD64) // x64
20372036
if constexpr (sfvint_parser_allowed<Context>()) {

tests/CMakeLists.txt

-14
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ else()
6868
COMMAND proto3_test
6969
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
7070

71-
set_property(TEST proto3_test PROPERTY ENVIRONMENT "ASAN_OPTIONS=detect_container_overflow=0")
7271

7372
file(MAKE_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/non_owning")
7473

@@ -93,8 +92,6 @@ else()
9392
COMMAND non_owning_proto3_test
9493
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
9594

96-
set_property(TEST non_owning_proto3_test PROPERTY ENVIRONMENT "ASAN_OPTIONS=detect_container_overflow=0")
97-
9895
add_library(non_owning_unittest_proto2_proto_lib INTERFACE
9996
"${CMAKE_CURRENT_SOURCE_DIR}/google/protobuf/unittest.proto")
10097
target_include_directories(non_owning_unittest_proto2_proto_lib SYSTEM INTERFACE ${CMAKE_CURRENT_BINARY_DIR})
@@ -110,8 +107,6 @@ else()
110107
COMMAND non_owning_proto2_test
111108
WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}")
112109

113-
set_property(TEST non_owning_proto2_test PROPERTY ENVIRONMENT "ASAN_OPTIONS=detect_container_overflow=0")
114-
115110
add_library(unittest_proto_lib INTERFACE "${CMAKE_CURRENT_SOURCE_DIR}/google/protobuf/unittest.proto")
116111
target_include_directories(unittest_proto_lib SYSTEM INTERFACE ${CMAKE_CURRENT_BINARY_DIR})
117112
protobuf_generate_hpp(
@@ -125,8 +120,6 @@ else()
125120
COMMAND proto2_test
126121
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
127122

128-
set_property(TEST proto2_test PROPERTY ENVIRONMENT "ASAN_OPTIONS=detect_container_overflow=0")
129-
130123
add_library(map_unittest_proto_lib INTERFACE "${CMAKE_CURRENT_SOURCE_DIR}/google/protobuf/map_unittest.proto")
131124
target_include_directories(map_unittest_proto_lib SYSTEM INTERFACE ${CMAKE_CURRENT_BINARY_DIR})
132125
protobuf_generate_hpp(
@@ -141,8 +134,6 @@ else()
141134
COMMAND map_test
142135
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
143136

144-
set_property(TEST map_test PROPERTY ENVIRONMENT "ASAN_OPTIONS=detect_container_overflow=0")
145-
146137
add_library(non_owning_map_unittest_proto_lib INTERFACE
147138
"${CMAKE_CURRENT_SOURCE_DIR}/google/protobuf/map_unittest.proto")
148139
target_include_directories(non_owning_map_unittest_proto_lib SYSTEM INTERFACE ${CMAKE_CURRENT_BINARY_DIR})
@@ -202,8 +193,6 @@ else()
202193
COMMAND dynamic_serializer_tests
203194
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
204195

205-
set_property(TEST dynamic_serializer_tests PROPERTY ENVIRONMENT "ASAN_OPTIONS=detect_container_overflow=0")
206-
207196
add_executable(dynamic_serializer_coverage_tests dynamic_serializer_coverage_tests.cpp)
208197
target_link_libraries(dynamic_serializer_coverage_tests PRIVATE hpp_proto::libhpp_proto Boost::ut glaze::glaze unittest_proto3_proto_lib)
209198
add_hpp_proto_test(dynamic_serializer_coverage_tests)
@@ -215,7 +204,6 @@ else()
215204
add_test(NAME well_known_types_tests
216205
COMMAND well_known_types_tests
217206
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
218-
set_property(TEST well_known_types_tests PROPERTY ENVIRONMENT "ASAN_OPTIONS=detect_container_overflow=0")
219207
else()
220208
message(WARNING "No proto file for well known types are found, all tests involves well known types are skipped.")
221209
endif(Protobuf_INCLUDE_DIRS)
@@ -251,8 +239,6 @@ else()
251239
COMMAND lite_test
252240
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
253241

254-
set_property(TEST lite_test PROPERTY ENVIRONMENT "ASAN_OPTIONS=detect_container_overflow=0")
255-
256242
add_library(editions_test_lib INTERFACE "basic_test_editions.proto" "editions_test.proto")
257243
target_include_directories(editions_test_lib SYSTEM INTERFACE ${CMAKE_CURRENT_BINARY_DIR})
258244
protobuf_generate_hpp(

tests/test_util.hpp

+16-7
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,6 @@ std::string to_hex(hpp::proto::concepts::contiguous_byte_range auto const &data)
3838
return result;
3939
}
4040

41-
inline std::ostream &operator<<(std::ostream &os, const std::vector<std::byte> &bytes) { return os << to_hex(bytes); }
42-
43-
inline std::ostream &operator<<(std::ostream &os, std::span<const std::byte> bytes) { return os << to_hex(bytes); }
44-
4541
template <hpp::proto::compile_time_string str>
4642
constexpr auto operator""_bytes_view() {
4743
hpp::proto::bytes_literal<str> data;
@@ -55,14 +51,27 @@ constexpr auto operator""_bytes() {
5551

5652
// NOLINTBEGIN(cert-dcl58-cpp)
5753
namespace std {
58-
template <typename T>
59-
requires requires { glz::meta<T>::value; }
60-
std::ostream &operator<<(std::ostream &os, const T &v) {
54+
template <glz::detail::glaze_t T>
55+
inline std::ostream &operator<<(ostream &os, const T &v) {
6156
#if !defined(HPP_PROTO_DISABLE_GLAZE)
6257
return os << hpp::proto::write_json(v).value();
6358
#else
6459
return os;
6560
#endif
6661
}
62+
63+
inline std::ostream &operator<<(std::ostream &os, const vector<byte> &bytes) { return os << to_hex(bytes); }
64+
inline std::ostream &operator<<(std::ostream &os, span<const byte> bytes) { return os << to_hex(bytes); }
65+
66+
template <typename T>
67+
inline std::ostream &operator<<(ostream &os, const vector<T> &c) {
68+
os << '[';
69+
if (!c.empty()) {
70+
std::for_each(c.begin(), c.end(), [&os](const T &v) { os << ", " << v; });
71+
}
72+
os << ']';
73+
return os;
74+
}
75+
6776
} // namespace std
6877
// NOLINTEND(cert-dcl58-cpp)

third-parties.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ if(HPP_PROTO_TESTS)
9393
CPMAddPackage(
9494
NAME ut
9595
GITHUB_REPOSITORY boost-ext/ut
96-
VERSION 2.0.1
96+
VERSION 2.3.0
9797
DOWNLOAD_ONLY ON
9898
)
9999
add_library(Boost::ut INTERFACE IMPORTED)

0 commit comments

Comments
 (0)