You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We often run tests with -p or -nodes=X (both in CI and during dev). Unfortunately this makes it impossible to get a stack dump when the tests are hanging. If you send SIGQUIT to the toplevel ginkgo process you just get a stack dump of the coordinating node, not the nodes actually running the tests. If you send SIGQUIT to the nodes running the tests, the coordinating node just prints:
-------------------------------------------------------------------
| |
| Ginkgo timed out waiting for all parallel nodes to report back! |
| |
-------------------------------------------------------------------
It'd be super handy if ginkgo trapped SIGQUIT, dispatched it to each of its nodes, collected their output, and then printed them non-interleaved. It should probably also do its own stack dump + exit, in case things are stuck there.
The text was updated successfully, but these errors were encountered:
We often run tests with
-p
or-nodes=X
(both in CI and during dev). Unfortunately this makes it impossible to get a stack dump when the tests are hanging. If you sendSIGQUIT
to the toplevelginkgo
process you just get a stack dump of the coordinating node, not the nodes actually running the tests. If you sendSIGQUIT
to the nodes running the tests, the coordinating node just prints:It'd be super handy if
ginkgo
trappedSIGQUIT
, dispatched it to each of its nodes, collected their output, and then printed them non-interleaved. It should probably also do its own stack dump + exit, in case things are stuck there.The text was updated successfully, but these errors were encountered: