Skip to content

Commit

Permalink
mantle/kola: allow rerun success for platform machine start failure
Browse files Browse the repository at this point in the history
In this case it's usually the platform having some internal failure.
If it succeeds in the rerun then just be happy with that.
  • Loading branch information
dustymabe committed May 31, 2023
1 parent ed7daff commit 8f7c06a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions mantle/kola/harness.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
}
Expand Down

0 comments on commit 8f7c06a

Please sign in to comment.