| 195 | } |
| 196 | |
| 197 | Status TestWritableFile::Flush() { |
| 198 | Status s = target_->Flush(); |
| 199 | if (s.ok() && env_->IsFilesystemActive()) { |
| 200 | state_.pos_at_last_flush_ = state_.pos_; |
| 201 | } |
| 202 | return s; |
| 203 | } |
| 204 | |
| 205 | Status TestWritableFile::SyncParent() { |
| 206 | Status s = SyncDir(GetDirName(state_.filename_)); |
no outgoing calls
no test coverage detected