reg/vendor/github.com/containerd/continuity/testutil/helpers.go

12 lines
158 B
Go
Raw Normal View History

package testutil
import (
"flag"
)
var rootEnabled bool
func init() {
flag.BoolVar(&rootEnabled, "test.root", false, "enable tests that require root")
}