skip test on none driver

pull/12711/head
Steven Powell 2021-10-14 17:27:06 -07:00
parent 9a89855997
commit 0623f34e99
1 changed files with 4 additions and 0 deletions

View File

@ -27,6 +27,10 @@ import (
// TestMountStart tests using the mount command on start
func TestMountStart(t *testing.T) {
if NoneDriver() {
t.Skip("skipping: none driver does not support mount")
}
MaybeParallel(t)
type validateFunc func(context.Context, *testing.T, string)