Bug #763
closedMini-unit should not auto-run tests when exiting due to an exception
Description
=begin
[pbrannan@zem tmp]$ cat test.rb
require 'test/unit'
class MyTest < Test::Unit::TestCase
def test_foo
assert false, "this function should never get called"
end
end
Calling raise here should exit the application without running any tests¶
raise "HA HA"
[pbrannan@zem tmp]$ ruby1.9 test.rb
/usr/local/lib/ruby1.9/1.9.0/minitest/unit.rb:207: warning: mismatched indentations at 'end' with 'def' at 194
Loaded suite test
Started
F
Finished in 0.002771 seconds.
- Failure:
test_foo(MyTest) [test.rb:5]:
this function should never get called
1 tests, 1 assertions, 1 failures, 0 errors, 0 skips
test.rb:9:in `': HA HA (RuntimeError)
=end
Updated by ko1 (Koichi Sasada) almost 16 years ago
- Assignee set to zenspider (Ryan Davis)
=begin
=end
Updated by yugui (Yuki Sonoda) almost 16 years ago
- Target version set to 1.9.1 Release Candidate
=begin
=end
Updated by zenspider (Ryan Davis) almost 16 years ago
=begin
This is a general 1.9 bug, I'll search for one or file separately.
% ruby -v -e 'at_exit { p $! }'
ruby 1.8.6 (2008-03-03 patchlevel 114) [universal-darwin9.0]
nil
% ruby -v -e 'at_exit { p $! }; raise "boom"'
ruby 1.8.6 (2008-03-03 patchlevel 114) [universal-darwin9.0]
#<RuntimeError: boom>
-e:1: boom (RuntimeError)
% ./miniruby -I./lib -I.ext/common -I./- -r./ext/purelib.rb ./runruby.rb --extout=.ext -- -v -e 'at_exit { p $! }'
ruby 1.9.1 (2008-12-13 revision 20683) [i386-darwin9.5.0]
nil
% ./miniruby -I./lib -I.ext/common -I./- -r./ext/purelib.rb ./runruby.rb --extout=.ext -- -v -e 'at_exit { p $! }; raise "boom"'
ruby 1.9.1 (2008-12-13 revision 20683) [i386-darwin9.5.0]
nil
-e:1:in `': boom (RuntimeError)
=end
Updated by zenspider (Ryan Davis) almost 16 years ago
- Status changed from Open to Closed
=begin
http://redmine.ruby-lang.org/issues/show/732
=end