From 3f6f9f87ca248d66d6ba87a2bcea321d1c90661f Mon Sep 17 00:00:00 2001 From: tenderlove Date: Sun, 25 Oct 2009 00:11:56 +0000 Subject: * ext/dl/handle.c (**) adding documentation * test/dl/test_handle.rb (test_NEXT) testing the NEXT handle git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25463 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/dl/handle.c | 6 ++++++ test/dl/test_handle.rb | 10 ++++++++++ 2 files changed, 16 insertions(+) diff --git a/ext/dl/handle.c b/ext/dl/handle.c index 28be36c099..f5e7a33f7e 100644 --- a/ext/dl/handle.c +++ b/ext/dl/handle.c @@ -51,6 +51,12 @@ static const rb_data_type_t dlhandle_data_type = { 0, dlhandle_free, dlhandle_memsize, }; +/* + * call-seq: close + * + * Close this DL::Handle. Calling close more than once will raise a + * DL::DLError exception. + */ VALUE rb_dlhandle_close(VALUE self) { diff --git a/test/dl/test_handle.rb b/test/dl/test_handle.rb index 487b8d1a34..f2b1de3c20 100644 --- a/test/dl/test_handle.rb +++ b/test/dl/test_handle.rb @@ -122,5 +122,15 @@ module DL handle.disable_close assert !handle.close_enabled?, 'close is enabled' end + + def test_NEXT + handle = DL::Handle::NEXT + assert handle['malloc'] + end + + def test_DEFAULT + handle = DL::Handle::DEFAULT + assert handle['malloc'] + end end end -- cgit v1.2.3