node: sketch of debug node logic

This commit is contained in:
William Banfield
2021-08-02 12:08:15 -04:00
parent dc7c212c41
commit df669c7bed
16 changed files with 416 additions and 165 deletions
+4 -2
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")
}
}