mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
d2333dd92c
* test/ruby/test_vm_dump.rb (assert_darwin_vm_dump_works): gcc seems not to chain some frames like Apple's clang. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61291 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
21 lines
622 B
Ruby
21 lines
622 B
Ruby
# frozen_string_literal: true
|
|
require 'test/unit'
|
|
|
|
class TestVMDump < Test::Unit::TestCase
|
|
def assert_darwin_vm_dump_works(args)
|
|
skip if RUBY_PLATFORM !~ /darwin/
|
|
assert_in_out_err(args, "", [], /^\[IMPORTANT\]/)
|
|
end
|
|
|
|
def test_darwin_invalid_call
|
|
assert_darwin_vm_dump_works(['-rfiddle', '-eFiddle::Function.new(Fiddle::Pointer.new(1), [], Fiddle::TYPE_VOID).call'])
|
|
end
|
|
|
|
def test_darwin_segv_in_syscall
|
|
assert_darwin_vm_dump_works('-e1.times{Process.kill :SEGV,$$}')
|
|
end
|
|
|
|
def test_darwin_invalid_access
|
|
assert_darwin_vm_dump_works(['-rfiddle', '-eFiddle.dlunwrap(100).class'])
|
|
end
|
|
end
|