summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-02-13 11:36:15 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-02-13 11:36:15 +0000
commit00679d202d17bc629e02632801eac7c1bc7490c8 (patch)
tree45baf4cd0d0b9fd071d7d5605d0836af4caffc03 /test
parentc6a2de302900784dd74106091c723862119bdeca (diff)
Fix rb_bug message pattern list
Each setions are separated by an empty line, and C level backtrace information format has been changed. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67064 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_rubyoptions.rb17
1 files changed, 14 insertions, 3 deletions
diff --git a/test/ruby/test_rubyoptions.rb b/test/ruby/test_rubyoptions.rb
index 4ae466b9a2..c8108bc313 100644
--- a/test/ruby/test_rubyoptions.rb
+++ b/test/ruby/test_rubyoptions.rb
@@ -669,7 +669,7 @@ class TestRubyOptions < Test::Unit::TestCase
module SEGVTest
opts = {}
- if /mswin|mingw/ =~ RUBY_PLATFORM
+ if /mswin|mingw|darwin/ =~ RUBY_PLATFORM
additional = /[\s\w\.\']*/
else
opts[:rlimit_core] = 0
@@ -688,21 +688,32 @@ class TestRubyOptions < Test::Unit::TestCase
(?:--\s(?:.+\n)*\n)?
--\sControl\sframe\sinformation\s-+\n
(?:c:.*\n)*
+ \n
)x,
%r(
(?:
--\sRuby\slevel\sbacktrace\sinformation\s----------------------------------------\n
-e:1:in\s\`<main>\'\n
-e:1:in\s\`kill\'\n
+ \n
)?
)x,
%r(
+ (?:--\sMachine(?:.+\n)*\n)?
+ )x,
+ %r(
(?:
--\sC\slevel\sbacktrace\sinformation\s-------------------------------------------\n
- (?:(?:.*\s)?\[0x\h+\]\n)*\n
+ (?:(?:.*\s)?\[0x\h+\].*\n|.*:\d+\n)*\n
+ )?
+ )x,
+ %r(
+ (?:--\sOther\sruntime\sinformation\s-+\n
+ (?:\n\*\s.*\n
+ (?:\n(?:\s.*\n)+)?
+ )*
)?
)x,
- :*,
]
ExpectedStderrList << additional if additional
end