Commit e997c8fc authored by Aaron Jacobs's avatar Aaron Jacobs

Began categorizing tests.

parent ad0a833f
......@@ -686,3 +686,37 @@ func (t *FlushFSTest) Mmap_CloseBeforeMunmap() {
func (t *FlushFSTest) Directory() {
AssertTrue(false, "TODO")
}
////////////////////////////////////////////////////////////////////////
// No errors
////////////////////////////////////////////////////////////////////////
type NoErrorsTest struct {
flushFSTest
}
func init() { RegisterTestSuite(&NoErrorsTest{}) }
////////////////////////////////////////////////////////////////////////
// Flush error
////////////////////////////////////////////////////////////////////////
type FlushErrorTest struct {
flushFSTest
}
func init() { RegisterTestSuite(&FlushErrorTest{}) }
func (t *FlushFSTest) SetUp(ti *TestInfo)
////////////////////////////////////////////////////////////////////////
// Fsync error
////////////////////////////////////////////////////////////////////////
type FsyncErrorTest struct {
flushFSTest
}
func init() { RegisterTestSuite(&FsyncErrorTest{}) }
func (t *FlushFSTest) SetUp(ti *TestInfo)
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