summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
authorNoah Gibbs <noah.gibbs@shopify.com>2022-07-20 15:48:58 +0100
committerGitHub <noreply@github.com>2022-07-20 10:48:58 -0400
commit6140edb5df29bc9362ded379d6e2e72e4584d07a (patch)
treec8033042278c291b8e81000ec969a7398e0c3625 /test/ruby
parent86d061294d3cc1656e18d0e1fd4b4f290da16944 (diff)
Match +YJIT in Ruby desc when testing segv (#6141)
In test_bug_reporter and test_rubyoptions we intentionally test child processes that cause SEGV. We run them with YJIT if the parent uses YJIT so that the text description matches the parent RUBY_DESCRIPTION.
Notes
Notes: Merged-By: maximecb <maximecb@ruby-lang.org>
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_rubyoptions.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/ruby/test_rubyoptions.rb b/test/ruby/test_rubyoptions.rb
index 6d2c0fa5cd..ed2bc3538c 100644
--- a/test/ruby/test_rubyoptions.rb
+++ b/test/ruby/test_rubyoptions.rb
@@ -778,6 +778,10 @@ class TestRubyOptions < Test::Unit::TestCase
def assert_segv(args, message=nil)
omit if ENV['RUBY_ON_BUG']
+ # We want YJIT to be enabled in the subprocess if it's enabled for us
+ # so that the Ruby description matches.
+ args.unshift("--yjit") if self.class.yjit_enabled?
+
test_stdin = ""
opt = SEGVTest::ExecOptions.dup
list = SEGVTest::ExpectedStderrList