Skipe driver intallOrUpdate test for none driver
parent
0cf4921c14
commit
ce93bd0253
|
@ -30,8 +30,12 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestDriverInstallOrUpdate(t *testing.T) {
|
func TestDriverInstallOrUpdate(t *testing.T) {
|
||||||
|
if isTestNoneDriver(t) {
|
||||||
|
t.Skip("Skip none driver.")
|
||||||
|
}
|
||||||
|
|
||||||
if runtime.GOOS != "linux" {
|
if runtime.GOOS != "linux" {
|
||||||
t.Skip()
|
t.Skip("Skip if not linux.")
|
||||||
}
|
}
|
||||||
|
|
||||||
tests := []struct {
|
tests := []struct {
|
Loading…
Reference in New Issue