aboutsummaryrefslogtreecommitdiffstats
path: root/test/-ext-/bug_reporter
diff options
context:
space:
mode:
authork0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-04-28 09:02:56 +0000
committerk0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-04-28 09:02:56 +0000
commitacacd7a1d3f383fcbdad0bc3151c9aaabb8779c9 (patch)
tree9b6413ddb83d6935632ebe57eb865ff54e9f68de /test/-ext-/bug_reporter
parent0b01776d430422b9ed89e078d93b7db3cb27f235 (diff)
downloadruby-acacd7a1d3f383fcbdad0bc3151c9aaabb8779c9.tar.gz
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
Diffstat (limited to 'test/-ext-/bug_reporter')
-rw-r--r--test/-ext-/bug_reporter/test_bug_reporter.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/-ext-/bug_reporter/test_bug_reporter.rb b/test/-ext-/bug_reporter/test_bug_reporter.rb
index 7bfb660faf..576628d63e 100644
--- a/test/-ext-/bug_reporter/test_bug_reporter.rb
+++ b/test/-ext-/bug_reporter/test_bug_reporter.rb
@@ -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/,
:*