mirror of
https://github.com/ruby/ruby.git
synced 2025-09-15 08:33:58 +02:00
test_bug_reporter.rb: make it work with --jit
test_rubyoptions.rb: replace gsub with sub because it's suboptimal for this git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63287 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
0b01776d43
commit
acacd7a1d3
2 changed files with 4 additions and 2 deletions
|
@ -4,10 +4,12 @@ require 'tmpdir'
|
|||
|
||||
class TestBugReporter < Test::Unit::TestCase
|
||||
def test_bug_reporter_add
|
||||
description = RUBY_DESCRIPTION
|
||||
description = description.sub(/\+JIT /, '') if RubyVM::MJIT.enabled?
|
||||
expected_stderr = [
|
||||
:*,
|
||||
/\[BUG\]\sSegmentation\sfault.*\n/,
|
||||
/#{ Regexp.quote(RUBY_DESCRIPTION) }\n\n/,
|
||||
/#{ Regexp.quote(description) }\n\n/,
|
||||
:*,
|
||||
/Sample bug reporter: 12345/,
|
||||
:*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue