From 8f7c06a33d1993a5c5e85563d8e22a7cf6072dcd Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Tue, 30 May 2023 16:55:06 -0400 Subject: [PATCH] mantle/kola: allow rerun success for platform machine start failure In this case it's usually the platform having some internal failure. If it succeeds in the rerun then just be happy with that. --- mantle/kola/harness.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mantle/kola/harness.go b/mantle/kola/harness.go index 0de76e7057..e5087512c1 100644 --- a/mantle/kola/harness.go +++ b/mantle/kola/harness.go @@ -1654,6 +1654,9 @@ func runTest(h *harness.H, t *register.Test, pltfrm string, flight platform.Flig return err }) if err != nil { + // The platform failed starting machines, which usually isn't *CoreOS + // fault. Maybe it will have better luck in the rerun. + markTestForRerunSuccess(t, "Platform failed starting machines.") h.Fatalf("Cluster failed starting machines: %v", err) } }