Replies: 1 comment
-
Please comment in the thread below if you are interested in working on it! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
rippled unit tests are very slow.
In GitHub Actions:
Reduce the runtime of unit tests without harming test coverage and the detection of bugs or regressions.
Potential areas to explore:
Env.cpp
, when~AppBundle
callsthread.join()
. Of course, the real problem is elsewhere. The actual issue is not expected to be thestd::thread::join
in~AppBundle
, but rather thesignalStop
call that causesApplicationImp
to signal and waits for its children to stop before it, itself, stops.Beta Was this translation helpful? Give feedback.
All reactions