| 491 | for (const auto& taskId : remoteTaskIds) { |
| 492 | auto split = |
| 493 | exec::Split(std::make_shared<RemoteConnectorSplit>(taskId), -1); |
| 494 | task->addSplit("0", std::move(split)); |
| 495 | } |
| 496 | task->noMoreSplits("0"); |
| 497 | } |
| 498 | |
| 499 | struct VectorFuzzer::Options options_; |
| 500 | VectorFuzzer fuzzer_; |
| 501 | FuzzerGenerator rng_; |
| 502 | size_t currentSeed_{0}; |
| 503 | |
| 504 | std::unordered_map<std::string, std::string> configSettings_; |
| 505 | // Serial number to differentiate consecutive benchmark repeats. |
| 506 | static int32_t iteration_; |
| 507 | }; |
| 508 | |
| 509 | int32_t ExchangeFuzzer::iteration_; |
| 510 | |
| 511 | int main(int argc, char** argv) { |
| 512 | // todo: use folly::Init init after upgrade folly lib |
| 513 | ::testing::InitGoogleTest(&argc, argv); |
| 514 | folly::init(&argc, &argv); |
| 515 | memory::MemoryManager::Options options; |
nothing calls this directly
no test coverage detected