If a command's run() method throws an exception during its execution then it can be immediately finished with error status. However, Javatest doesn't catch the exceptions in the command thread, and keeps waiting for the failed command to finish, eventually exiting due to timeout.
This greatly impacts performance. E.g. if a test failed to start for some reason, it will take maximal time (timeout length) instead of failing immediately.
This greatly impacts performance. E.g. if a test failed to start for some reason, it will take maximal time (timeout length) instead of failing immediately.