(self)
| 320 | node.wait_until_stopped() |
| 321 | |
| 322 | def init_empty_test(self): |
| 323 | self.log.info("Test that stopping and restarting a node that has done nothing is not causing a failure") |
| 324 | options = [ |
| 325 | [], |
| 326 | ALL_INDEX_ARGS, |
| 327 | ] |
| 328 | for option in options: |
| 329 | self.restart_node(1, option) |
| 330 | |
| 331 | def restart_node_with_fd_limit(self, limit): |
| 332 | """Restart node 1 with a given soft RLIMIT_NOFILE. Skips if the limit cannot be set.""" |
no test coverage detected