ruby / debug

Debugging functionality for Ruby
BSD 2-Clause "Simplified" License
1.14k stars 127 forks source link

Terminate a test early when it fails #974

Closed ono-max closed 1 year ago

ono-max commented 1 year ago

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.