summaryrefslogtreecommitdiff
path: root/test/ruby/test_rubyoptions.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_rubyoptions.rb')
-rw-r--r--test/ruby/test_rubyoptions.rb13
1 files changed, 2 insertions, 11 deletions
diff --git a/test/ruby/test_rubyoptions.rb b/test/ruby/test_rubyoptions.rb
index b1ecef402a..ab0901d1db 100644
--- a/test/ruby/test_rubyoptions.rb
+++ b/test/ruby/test_rubyoptions.rb
@@ -552,18 +552,9 @@ class TestRubyOptions < Test::Unit::TestCase
def assert_segv(args, message=nil)
test_stdin = ""
opt = SEGVTest::ExecOptions.dup
+ list = SEGVTest::ExpectedStderrList
- _, stderr, status = EnvUtil.invoke_ruby(args, test_stdin, false, true, **opt)
- stderr.force_encoding("ASCII-8BIT")
-
- if signo = status.termsig
- sleep 0.1
- EnvUtil.diagnostic_reports(Signal.signame(signo), EnvUtil.rubybin, status.pid, Time.now)
- end
-
- assert_pattern_list(SEGVTest::ExpectedStderrList, stderr, message)
-
- status
+ assert_in_out_err(args, test_stdin, //, list, encoding: "ASCII-8BIT", **opt)
end
def test_segv_test