summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authortenderlove <tenderlove@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-12-04 23:21:01 +0000
committertenderlove <tenderlove@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-12-04 23:21:01 +0000
commit570832b0be10a25b511da16c1a77f24d8f58da3c (patch)
treea271420e54e3851bbad5fb83b77a2ee1fa410161 /test
parent4e0ccdb387f5a76dabd5d311ffc1951ff87b3f83 (diff)
downloadruby-570832b0be10a25b511da16c1a77f24d8f58da3c.tar.gz
ruby-570832b0be10a25b511da16c1a77f24d8f58da3c.tar.xz
ruby-570832b0be10a25b511da16c1a77f24d8f58da3c.zip
* ext/dl/cptr.c (to_int): DL::CPtr supports to_int
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25996 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/dl/test_cptr.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/dl/test_cptr.rb b/test/dl/test_cptr.rb
index 64b78d134..953af286e 100644
--- a/test/dl/test_cptr.rb
+++ b/test/dl/test_cptr.rb
@@ -3,6 +3,11 @@ require_relative '../ruby/envutil'
module DL
class TestCPtr < TestBase
+ def test_cptr_to_int
+ null = DL::NULL
+ assert_equal(null.to_i, null.to_int)
+ end
+
def test_malloc_free_func_int
free = CFunc.new(DL::RUBY_FREE, TYPE_VOID, 'free')