node: sketch of debug node logic

This commit is contained in:
William Banfield
2021-07-29 19:14:26 -04:00
parent dc7c212c41
commit df669c7bed
16 changed files with 418 additions and 167 deletions

View File

@@ -81,8 +81,10 @@ func TestNodeStartStop(t *testing.T) {
panic(err)
}
err = p.Signal(syscall.SIGABRT)
fmt.Println(err)
t.Fatal("timed out waiting for shutdown")
if err != nil {
t.Logf("err: %s", err)
}
t.Fatalf("timed out waiting for shutdown")
}
}