The --noshutdown
flag is brittle, confusing, and redundant:
- Someone wanting to inspect the state after a test failure will likely also want to debug the state on the python side, so the option is redundant with
--pdbonfailure
. If there was a use case to replicate--pdbonfailure
without starting pdb, a dedicated flag could be added for that use case. - It is brittle to use the flag for a passing test, because it will disable checks in the test. For example, on shutdown LSan will perform a leak check, and the test framework will check that the node did not crash, and it will check that the node did not print errors to stderr.
Fix all issues by removing it.
Also, tidy up startup error messages to be less confusing as a result.