Skip to content

Commit c0d08d1

Browse files
author
Stephen Lowrie
authored
Merge pull request coreos#1090 from arithx/disable_tests_on_unpriv
kola/tests: disable additional clustered tests on qemu-unpriv
2 parents 6faf458 + f39a00a commit c0d08d1

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

kola/tests/crio/crio.go

+2
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,8 @@ func init() {
215215
Distros: []string{"rhcos"},
216216
UserData: enableCrioIgn,
217217
UserDataV3: enableCrioIgnV3,
218+
// qemu-unpriv machines cannot communicate between each other
219+
ExcludePlatforms: []string{"qemu-unpriv"},
218220
})
219221
}
220222

kola/tests/etcd/rhcos.go

+4
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ func init() {
6565
}`),
6666
Flags: []register.Flag{register.RequiresInternetAccess}, // fetching etcd requires networking
6767
Distros: []string{"rhcos"},
68+
// qemu-unpriv machines cannot communicate between each other
69+
ExcludePlatforms: []string{"qemu-unpriv"},
6870
})
6971
register.Register(&register.Test{
7072
Run: rhcosClusterTLS,
@@ -123,6 +125,8 @@ func init() {
123125
}`),
124126
Flags: []register.Flag{register.RequiresInternetAccess}, // fetching etcd requires networking
125127
Distros: []string{"rhcos"},
128+
// qemu-unpriv machines cannot communicate between each other
129+
ExcludePlatforms: []string{"qemu-unpriv"},
126130
})
127131
}
128132

0 commit comments

Comments
 (0)