2
0

Adding better naming to unit tests for filtering; adding short and full unit test suites (#235)

Este cometimento está contido em:
Stanley Tsang
2020-07-21 12:19:47 -06:00
cometido por GitHub
ascendente 35c5a7fe45
cometimento 684f3e6af4
14 ficheiros modificados com 112 adições e 39 eliminações
+5 -4
Ver ficheiro
@@ -44,9 +44,9 @@ namespace CorrectnessTests
dataset.Release();
}
INSTANTIATE_TEST_CASE_P(ReduceCorrectnessSweep,
ReduceCorrectnessTest,
testing::Combine(
INSTANTIATE_TEST_SUITE_P(ReduceCorrectnessSweep,
ReduceCorrectnessTest,
testing::Combine(
// Reduction operator
testing::Values(ncclSum, ncclProd, ncclMax, ncclMin),
// Data types
@@ -66,5 +66,6 @@ namespace CorrectnessTests
testing::Values(2,3,4,5,6,7,8),
// In-place or not
testing::Values(false, true),
testing::Values("")));
testing::Values("")),
CorrectnessTest::PrintToStringParamName());
} // namespace