| 203 | } |
| 204 | |
| 205 | Status TestWritableFile::SyncParent() { |
| 206 | Status s = SyncDir(GetDirName(state_.filename_)); |
| 207 | if (s.ok()) { |
| 208 | env_->DirWasSynced(); |
| 209 | } |
| 210 | return s; |
| 211 | } |
| 212 | |
| 213 | Status TestWritableFile::Sync() { |
| 214 | if (!env_->IsFilesystemActive()) { |
nothing calls this directly
no test coverage detected