Skip to content

Commit 75a0edc

Browse files
committed
kola/core.go: remove fcos.internet test
This test has been denylisted in FCOS for a long time due to rate limiting issues with the busybox container. The functionality of the test is covered by other FCOS tests so it can be removed. see: https://issues.redhat.com/browse/COS-2094
1 parent 13da33e commit 75a0edc

File tree

1 file changed

+0
-30
lines changed

1 file changed

+0
-30
lines changed

mantle/kola/tests/coretest/core.go

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -91,21 +91,6 @@ func init() {
9191
// only work on x86_64 and aarch64.
9292
Architectures: []string{"x86_64", "aarch64"},
9393
})
94-
// TODO: Enable DockerPing/DockerEcho once fixed
95-
// TODO: Only enable PodmanPing on non qemu. Needs:
96-
// https://github.com/coreos/mantle/issues/1132
97-
register.RegisterTest(&register.Test{
98-
Name: "fcos.internet",
99-
Description: "Verify that podman echo and get head work.",
100-
Run: InternetTests,
101-
ClusterSize: 1,
102-
Tags: []string{kola.NeedsInternetTag},
103-
NativeFuncs: map[string]register.NativeFuncWrap{
104-
"PodmanEcho": register.CreateNativeFuncWrap(TestPodmanEcho),
105-
"PodmanWgetHead": register.CreateNativeFuncWrap(TestPodmanWgetHead),
106-
},
107-
Distros: []string{"fcos"},
108-
})
10994
register.RegisterTest(&register.Test{
11095
Name: "rootfs.uuid",
11196
Description: "Verify that the root disk's GUID was set to a random one on first boot.",
@@ -189,21 +174,6 @@ func TestDockerPing() error {
189174
return util.RunCmdTimeout(DockerTimeout, "docker", "run", "busybox", "ping", "-c4", "coreos.com")
190175
}
191176

192-
func TestPodmanEcho() error {
193-
//t.Parallel()
194-
return util.RunCmdTimeout(DockerTimeout, "podman", "run", "busybox", "echo")
195-
}
196-
197-
func TestPodmanPing() error {
198-
//t.Parallel()
199-
return util.RunCmdTimeout(DockerTimeout, "podman", "run", "busybox", "ping", "-c4", "coreos.com")
200-
}
201-
202-
func TestPodmanWgetHead() error {
203-
//t.Parallel()
204-
return util.RunCmdTimeout(DockerTimeout, "podman", "run", "busybox", "wget", "--spider", "http://fedoraproject.org/static/hotspot.txt")
205-
}
206-
207177
// This execs gdbus, because we need to change uses to test perms.
208178
func TestDbusPerms() error {
209179
c := exec.Command(

0 commit comments

Comments
 (0)