test: use uniform naming scheme for fuzz tests. (#2928)

Use case: libtransmission-test --gtest_filter='*Fuzz' --gtest_repeat N
This commit is contained in:
Charles Kerr 2022-04-16 11:47:51 -05:00 committed by GitHub
parent 881860ac6f
commit 4a2a6b2985
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@ TEST(Client, clientForId)
}
}
TEST(Client, fuzzRegressions)
TEST(Client, clientForIdFuzzRegressions)
{
auto constexpr Tests = std::array<std::string_view, 5>{
"LVJTp3u+Aptl01HjzTHXVC5b9g4="sv, "LWJrHb2OpoNsJdODHA7iyXjnHxc="sv, "LU1PjpTjmvUth+f15YTOOggXl3k="sv,
@ -92,7 +92,7 @@ TEST(Client, fuzzRegressions)
}
}
TEST(Client, fuzz)
TEST(Client, clientForIdFuzz)
{
for (size_t i = 0; i < 10000; ++i)
{