re-enable skipped multi node test

pull/7973/head
Sharif Elgamal 2020-05-04 10:43:01 -07:00
parent daaafd5df4
commit 258be2cbde
1 changed files with 1 additions and 4 deletions

View File

@ -139,14 +139,11 @@ func validateStopRunningNode(ctx context.Context, t *testing.T, profile string)
}
func validateStartNodeAfterStop(ctx context.Context, t *testing.T, profile string) {
// TODO (#7496): remove skip once restarts work
t.Skip("Restarting nodes is broken :(")
// Grab the stopped node
name := "m03"
// Start the node back up
rr, err := Run(t, exec.CommandContext(ctx, Target(), "-p", profile, "node", "start", name))
rr, err := Run(t, exec.CommandContext(ctx, Target(), "-p", profile, "node", "start", name, "--alsologtostderr"))
if err != nil {
t.Errorf("node start returned an error. args %q: %v", rr.Command(), err)
}