Began categorizing tests.

geesefs-0-30-9
Aaron Jacobs 2015-03-23 16:11:01 +11:00
parent ad0a833fa7
commit e997c8fc91
1 changed files with 34 additions and 0 deletions

View File

@ -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)