| 300 | } |
| 301 | |
| 302 | Status FaultInjectionTestEnv::DeleteFile(const std::string& f) { |
| 303 | Status s = EnvWrapper::DeleteFile(f); |
| 304 | ASSERT_OK(s); |
| 305 | if (s.ok()) { |
| 306 | UntrackFile(f); |
| 307 | } |
| 308 | return s; |
| 309 | } |
| 310 | |
| 311 | Status FaultInjectionTestEnv::RenameFile(const std::string& s, |
| 312 | const std::string& t) { |
no test coverage detected