| 76 | } |
| 77 | |
| 78 | int CountOpenFds() const { |
| 79 | // Only count files in the test working directory so that we don't |
| 80 | // accidentally count other fds that might be opened or closed in |
| 81 | // the background by other threads. |
| 82 | return kudu::CountOpenFds(env_, GetTestPath("*")); |
| 83 | } |
| 84 | |
| 85 | void SetUp() override { |
| 86 | KuduTest::SetUp(); |
no test coverage detected