| 501 | void skipListTest(); |
| 502 | |
| 503 | Future<Void> startSystemMonitor(std::string dataFolder, |
| 504 | Optional<Standalone<StringRef>> dcId, |
| 505 | Optional<Standalone<StringRef>> zoneId, |
| 506 | Optional<Standalone<StringRef>> machineId) { |
| 507 | initializeSystemMonitorMachineState( |
| 508 | SystemMonitorMachineState(dataFolder, dcId, zoneId, machineId, g_network->getLocalAddress().ip)); |
| 509 | |
| 510 | systemMonitor(); |
| 511 | return recurring(&systemMonitor, SERVER_KNOBS->SYSTEM_MONITOR_FREQUENCY, TaskPriority::FlushTrace); |
| 512 | } |
| 513 | |
| 514 | void testIndexedSet(); |
| 515 |
no test coverage detected