diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-05-14 04:59:15 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-05-14 04:59:15 +0000 |
commit | ff5c6d343cdc113d25b9bcc719e967cb9773818b (patch) | |
tree | 385ea95927057ecd9ac325d40fd9679339f6c44b /test/ruby/test_rubyoptions.rb | |
parent | d863f7af0c34a0e346eafa200773f6a8d5b67f3b (diff) |
* test/ruby/test_rubyoptions.rb (test_segv_test): VC runtime adds some messages
when SEGV occurs
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27796 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_rubyoptions.rb')
-rw-r--r-- | test/ruby/test_rubyoptions.rb | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/test/ruby/test_rubyoptions.rb b/test/ruby/test_rubyoptions.rb index 3364d1c7be..f5bc830830 100644 --- a/test/ruby/test_rubyoptions.rb +++ b/test/ruby/test_rubyoptions.rb @@ -365,6 +365,13 @@ class TestRubyOptions < Test::Unit::TestCase end def test_segv_test + if /mswin|mingw/ =~ RUBY_PLATFORM + opts = {} + additional = '[\s\w\.\']*' + else + opts[:rlimit_core] = 0 + additional = "" + end assert_in_out_err(["-e", "Process.kill :SEGV, $$"], "", [], %r(\A -e:(?:1:)?\s\[BUG\]\sSegmentation\sfault\n @@ -385,9 +392,12 @@ class TestRubyOptions < Test::Unit::TestCase \[NOTE\]\n You\smay\shave\sencountered\sa\sbug\sin\sthe\sRuby\sinterpreter\sor\sextension\slibraries.\n Bug\sreports\sare\swelcome.\n - For\sdetails:\shttps:\/\/2.zoppoz.workers.dev:443\/http\/www.ruby-lang.org/bugreport.html\n\n\z + For\sdetails:\shttps:\/\/2.zoppoz.workers.dev:443\/http\/www.ruby-lang.org/bugreport.html\n + \n + (?:#{additional}) + \z )x, nil, - :rlimit_core=>0) + opts) end end |