Skip to content

Commit 80f5733

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 also covered by other FCOS tests so it can be removed. Also remove some older, obsolete functions that were probably a part of this test in the past. see: https://issues.redhat.com/browse/COS-2094
1 parent 13da33e commit 80f5733

File tree

1 file changed

+0
-40
lines changed

1 file changed

+0
-40
lines changed

mantle/kola/tests/coretest/core.go

Lines changed: 0 additions & 40 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.",
@@ -179,31 +164,6 @@ func TestPortSsh() error {
179164
return nil
180165
}
181166

182-
func TestDockerEcho() error {
183-
//t.Parallel()
184-
return util.RunCmdTimeout(DockerTimeout, "docker", "run", "busybox", "echo")
185-
}
186-
187-
func TestDockerPing() error {
188-
//t.Parallel()
189-
return util.RunCmdTimeout(DockerTimeout, "docker", "run", "busybox", "ping", "-c4", "coreos.com")
190-
}
191-
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-
207167
// This execs gdbus, because we need to change uses to test perms.
208168
func TestDbusPerms() error {
209169
c := exec.Command(

0 commit comments

Comments
 (0)