Commit 0407fb76 authored by Aaron Jacobs's avatar Aaron Jacobs

Added memfs create in parallel tests.

parent 4269d7cd
......@@ -1251,3 +1251,15 @@ func (t *MemFSTest) DeleteSymlink() {
AssertEq(nil, err)
ExpectThat(entries, ElementsAre())
}
func (t *MemFSTest) CreateInParallel_NoTruncate() {
runCreateInParallelTest_NoTruncate(t.Ctx, t.Dir)
}
func (t *MemFSTest) CreateInParallel_Truncate() {
runCreateInParallelTest_Truncate(t.Ctx, t.Dir)
}
func (t *MemFSTest) CreateInParallel_Exclusive() {
runCreateInParallelTest_Exclusive(t.Ctx, t.Dir)
}
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