mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
fb2008a73a
* test/lib/find_executable.rb: Ditto. * test/lib/memory_status.rb: Ditto. * test/lib/test/unit.rb: require envutil. * test/: Don't require envutil in test files. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48409 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
25 lines
708 B
Ruby
25 lines
708 B
Ruby
require 'test/unit'
|
|
require 'tmpdir'
|
|
|
|
class TestBugReporter < Test::Unit::TestCase
|
|
def test_bug_reporter_add
|
|
expected_stderr = [
|
|
:*,
|
|
/\[BUG\]\sSegmentation\sfault.*\n/,
|
|
/#{ Regexp.quote(RUBY_DESCRIPTION) }\n\n/,
|
|
:*,
|
|
/Sample bug reporter: 12345/,
|
|
:*
|
|
]
|
|
tmpdir = Dir.mktmpdir
|
|
|
|
args = ["--disable-gems", "-r-test-/bug_reporter/bug_reporter",
|
|
"-C", tmpdir]
|
|
stdin = "register_sample_bug_reporter(12345); Process.kill :SEGV, $$"
|
|
_, stderr, status = EnvUtil.invoke_ruby(args, stdin, false, true)
|
|
stderr.force_encoding("ASCII-8BIT")
|
|
assert_pattern_list(expected_stderr, stderr)
|
|
ensure
|
|
FileUtils.rm_rf(tmpdir) if tmpdir
|
|
end
|
|
end
|