aboutsummaryrefslogtreecommitdiffstats
path: root/test/-ext-
diff options
context:
space:
mode:
authorPeter Zhu <peter@peterzhu.ca>2023-08-26 19:31:46 -0400
committerPeter Zhu <peter@peterzhu.ca>2023-08-28 15:05:19 -0400
commit91de37c23ec6b048e45df79cef1cb93a86316929 (patch)
tree7dd3aaccecdb848d152dc01dfc9f362c78394d30 /test/-ext-
parentcaf48487cafb8414c60f32b902decf0689ae2093 (diff)
downloadruby-91de37c23ec6b048e45df79cef1cb93a86316929.tar.gz
Remove --disable-gems in assert_in_out_err
assert_in_out_err adds --disable=gems so we don't need to add --disable-gems in the args list.
Diffstat (limited to 'test/-ext-')
-rw-r--r--test/-ext-/bug_reporter/test_bug_reporter.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/-ext-/bug_reporter/test_bug_reporter.rb b/test/-ext-/bug_reporter/test_bug_reporter.rb
index d4d0de7f46..1d3d253c04 100644
--- a/test/-ext-/bug_reporter/test_bug_reporter.rb
+++ b/test/-ext-/bug_reporter/test_bug_reporter.rb
@@ -22,8 +22,7 @@ class TestBugReporter < Test::Unit::TestCase
tmpdir = Dir.mktmpdir
no_core = "Process.setrlimit(Process::RLIMIT_CORE, 0); " if defined?(Process.setrlimit) && defined?(Process::RLIMIT_CORE)
- args = ["--disable-gems", "-r-test-/bug_reporter",
- "-C", tmpdir]
+ args = ["-r-test-/bug_reporter", "-C", tmpdir]
args.push("--yjit") if yjit_enabled? # We want the printed description to match this process's RUBY_DESCRIPTION
args.unshift({"RUBY_ON_BUG" => nil})
stdin = "#{no_core}register_sample_bug_reporter(12345); Process.kill :SEGV, $$"