diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-09-07 23:32:32 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-09-07 23:32:32 +0000 |
| commit | d44d02bd7091c6eb54b8be099ec3c45e3b142d56 (patch) | |
| tree | 5c99881d79d5877810411e2193256f85de7ec7f5 /test/dl/test_cptr.rb | |
| parent | e57aa3f4b82581cc8350f6475674e470e4c20f9d (diff) | |
| download | ruby-d44d02bd7091c6eb54b8be099ec3c45e3b142d56.tar.gz ruby-d44d02bd7091c6eb54b8be099ec3c45e3b142d56.tar.xz ruby-d44d02bd7091c6eb54b8be099ec3c45e3b142d56.zip | |
* test/dl/test_{cfunc,ptr}.rb: added tests from Aaron Patterson.
see [ruby-dev:39249].
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24785 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/dl/test_cptr.rb')
| -rw-r--r-- | test/dl/test_cptr.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/dl/test_cptr.rb b/test/dl/test_cptr.rb new file mode 100644 index 000000000..3ff811f6e --- /dev/null +++ b/test/dl/test_cptr.rb @@ -0,0 +1,18 @@ +require 'test_base' + +module DL + class TestCPtr < TestBase + def test_free + ptr = CPtr.malloc(4) + assert_nil ptr.free + end + + def test_free= + free = CFunc.new(@libc['free'], TYPE_VOID, 'free') + ptr = CPtr.malloc(4) + ptr.free = free + + assert_equal free.ptr, ptr.free.ptr + end + end +end |
