From 059bf0687ad856e3f2942e62a9ac6f98288c7186 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Tue, 23 Apr 2024 04:26:19 +0300 Subject: [PATCH] Rename test_md5, test_sha1 to test_detail_md5, test_detail_sha1 --- test/CMakeLists.txt | 5 ++--- test/Jamfile.v2 | 7 ++----- test/{test_md5.cpp => test_detail_md5.cpp} | 0 test/{test_sha1.cpp => test_detail_sha1.cpp} | 0 4 files changed, 4 insertions(+), 8 deletions(-) rename test/{test_md5.cpp => test_detail_md5.cpp} (100%) rename test/{test_sha1.cpp => test_detail_sha1.cpp} (100%) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 940cf6d..50e169e 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -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) diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index 2cfb972..71b35f0 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -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 ; diff --git a/test/test_md5.cpp b/test/test_detail_md5.cpp similarity index 100% rename from test/test_md5.cpp rename to test/test_detail_md5.cpp diff --git a/test/test_sha1.cpp b/test/test_detail_sha1.cpp similarity index 100% rename from test/test_sha1.cpp rename to test/test_detail_sha1.cpp