Commit fddf222e authored by Aaron Jacobs's avatar Aaron Jacobs

Declared fdatasync tests.

parent 096c3fa6
......@@ -409,6 +409,10 @@ func (t *NoErrorsTest) Fsync() {
AssertThat(t.getFsyncs(), ElementsAre("taco", "tacos"))
}
func (t *NoErrorsTest) Fdatasync() {
AssertTrue(false, "TODO")
}
func (t *NoErrorsTest) Dup() {
var n int
var err error
......@@ -750,3 +754,7 @@ func (t *FsyncErrorTest) Fsync() {
AssertNe(nil, err)
ExpectThat(err, Error(HasSubstr("no such file")))
}
func (t *FsyncErrorTest) Fdatasync() {
AssertTrue(false, "TODO")
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment