envutil.rb: backtrace may not be present

* test/ruby/envutil.rb (assert_separately): SystemStackError at
  machine stack overflow on platforms where sigaltstack is
  unavailable does not have backtrace.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44130 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2013-12-11 01:48:17 +00:00
Родитель d6a5fe709e
Коммит 2c11ccb861
1 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -345,8 +345,10 @@ eom
ignore_stderr = nil
end
if res
res.backtrace.each do |l|
l.sub!(/\A-:(\d+)/){"#{file}:#{line + $1.to_i}"}
if bt = res.backtrace
bt.each do |l|
l.sub!(/\A-:(\d+)/){"#{file}:#{line + $1.to_i}"}
end
end
raise res
end