| 260 | }; |
| 261 | |
| 262 | void* install_thread(void* arg) { |
| 263 | InstallArg* ia = (InstallArg*)arg; |
| 264 | ia->e->install_snapshot( |
| 265 | &ia->cntl, &ia->request, &ia->response, &ia->done); |
| 266 | ia->done.wait(); |
| 267 | return NULL; |
| 268 | } |
| 269 | |
| 270 | TEST_F(SnapshotExecutorTest, retry_request) { |
| 271 | MockFSMCaller fsm_caller; |
nothing calls this directly
no test coverage detected