mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
e1fee7f949
because the name "MJIT" is an internal code name, it's inconsistent with --jit while they are related to each other, and I want to discourage future JIT implementation-specific (e.g. MJIT-specific) APIs by this rename. [Feature #17490]
28 lines
806 B
Ruby
28 lines
806 B
Ruby
# frozen_string_literal: false
|
|
require 'test/unit'
|
|
require 'tmpdir'
|
|
|
|
class TestBugReporter < Test::Unit::TestCase
|
|
def test_bug_reporter_add
|
|
skip if ENV['RUBY_ON_BUG']
|
|
|
|
description = RUBY_DESCRIPTION
|
|
description = description.sub(/\+JIT /, '') if defined?(RubyVM::JIT) && RubyVM::JIT.enabled?
|
|
expected_stderr = [
|
|
:*,
|
|
/\[BUG\]\sSegmentation\sfault.*\n/,
|
|
/#{ Regexp.quote(description) }\n\n/,
|
|
:*,
|
|
/Sample bug reporter: 12345/,
|
|
:*
|
|
]
|
|
tmpdir = Dir.mktmpdir
|
|
|
|
args = ["--disable-gems", "-r-test-/bug_reporter",
|
|
"-C", tmpdir]
|
|
stdin = "register_sample_bug_reporter(12345); Process.kill :SEGV, $$"
|
|
assert_in_out_err(args, stdin, [], expected_stderr, encoding: "ASCII-8BIT")
|
|
ensure
|
|
FileUtils.rm_rf(tmpdir) if tmpdir
|
|
end
|
|
end
|