mirror of
https://github.com/transmission/transmission
synced 2025-03-03 18:25:35 +00:00
test: use uniform naming scheme for fuzz tests. (#2928)
Use case: libtransmission-test --gtest_filter='*Fuzz' --gtest_repeat N
This commit is contained in:
parent
881860ac6f
commit
4a2a6b2985
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue