binctr/vendor/github.com/Microsoft/hcsshim/functional/utilities/requiresbuild.go
Jess Frazelle 94d1cfbfbf
update vendor
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
2018-09-25 12:27:46 -04:00

13 lines
215 B
Go

package testutilities
import (
"testing"
"github.com/Microsoft/hcsshim/internal/osversion"
)
func RequiresBuild(t *testing.T, b uint16) {
if osversion.Get().Build < b {
t.Skipf("Requires build %d+", b)
}
}