Project

General

Profile

Actions

Bug #763

closed

Mini-unit should not auto-run tests when exiting due to an exception

Added by cout (Paul Brannan) over 15 years ago. Updated almost 13 years ago.

Status:
Closed
ruby -v:
Backport:
[ruby-core:19990]

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.

  1. 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

Actions #1

Updated by ko1 (Koichi Sasada) over 15 years ago

  • Assignee set to zenspider (Ryan Davis)

=begin

=end

Actions #2

Updated by yugui (Yuki Sonoda) over 15 years ago

  • Target version set to 1.9.1 Release Candidate

=begin

=end

Actions #3

Updated by zenspider (Ryan Davis) over 15 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

Actions #4

Updated by zenspider (Ryan Davis) over 15 years ago

  • Status changed from Open to Closed
Actions

Also available in: Atom PDF

Like0
Like0Like0Like0Like0