| 306 | class Select_ : public ::testing::TestWithParam<select_params> {}; |
| 307 | |
| 308 | string pd4(dim4 dims) { |
| 309 | string out(32, '\0'); |
| 310 | int len = snprintf(const_cast<char*>(out.data()), 32, "%lld_%lld_%lld_%lld", |
| 311 | dims[0], dims[1], dims[2], dims[3]); |
| 312 | out.resize(len); |
| 313 | return out; |
| 314 | } |
| 315 | |
| 316 | string testNameGenerator( |
| 317 | const ::testing::TestParamInfo<Select_::ParamType> info) { |
no outgoing calls
no test coverage detected