13 lines
215 B
Go
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)
|
|
}
|
|
}
|