Currently the test framework waits 15 seconds and then terminates if a test fails. The reason for waiting 15 seconds is kill_remote_debuggee is called without raising Test::Unit::AssertionFailedError. We need to raise Test::Unit::AssertionFailedError on all modes when a test fails.
Currently the test framework waits 15 seconds and then terminates if a test fails. The reason for waiting 15 seconds is
kill_remote_debuggee
is called without raisingTest::Unit::AssertionFailedError
. We need to raiseTest::Unit::AssertionFailedError
on all modes when a test fails.