2
0
mirror of https://github.com/boostorg/uuid.git synced 2026-01-19 04:42:16 +00:00

Rename test_md5, test_sha1 to test_detail_md5, test_detail_sha1

This commit is contained in:
Peter Dimov
2024-04-23 04:26:19 +03:00
parent b92a8187ba
commit 059bf0687a
4 changed files with 4 additions and 8 deletions

View File

@@ -36,12 +36,11 @@ boost_test(TYPE run SOURCES test_hash_value.cpp)
boost_test(TYPE run SOURCES test_boost_unordered.cpp LINK_LIBRARIES Boost::unordered)
boost_test(TYPE run SOURCES test_std_unordered.cpp)
boost_test(TYPE run SOURCES test_detail_md5.cpp)
boost_test(TYPE run SOURCES test_detail_sha1.cpp)
boost_test(TYPE run SOURCES test_detail_endian.cpp)
boost_test(TYPE run SOURCES test_detail_chacha20.cpp)
boost_test(TYPE run SOURCES test_md5.cpp)
boost_test(TYPE run SOURCES test_sha1.cpp)
boost_test(TYPE run SOURCES test_entropy_error.cpp)
boost_test(TYPE run SOURCES test_detail_random_provider.cpp LINK_LIBRARIES Boost::array)

View File

@@ -109,14 +109,11 @@ run test_boost_unordered.cpp
# test detail components
run test_detail_md5.cpp ;
run test_detail_sha1.cpp ;
run test_detail_endian.cpp ;
run test_detail_chacha20.cpp ;
# test hash functions
run test_md5.cpp ;
run test_sha1.cpp ;
# compile-fail tests
compile-fail compile-fail/random_generator_no_copy_assign.cpp ;