summaryrefslogtreecommitdiff
path: root/ext/dl
diff options
context:
space:
mode:
authorttate <ttate@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-05-09 14:43:50 +0000
committerttate <ttate@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-05-09 14:43:50 +0000
commite2a0e0faae52e96c8f19d5bb79b2db5dd02a6ccd (patch)
tree30bb1498b76a85666f4e5bbf9a7f40fb59a49fa4 /ext/dl
parent597a64146fe0268f4a71f78cdeebdf9823e6d045 (diff)
added a test.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8415 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/dl')
-rw-r--r--ext/dl/test/test_import.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/dl/test/test_import.rb b/ext/dl/test/test_import.rb
index c96c330a8c..5b5c9b07ff 100644
--- a/ext/dl/test/test_import.rb
+++ b/ext/dl/test/test_import.rb
@@ -40,6 +40,12 @@ module DL
end
class TestImport < TestBase
+ def test_malloc()
+ s1 = LIBC::Timeval.malloc()
+ s2 = LIBC::Timeval.malloc()
+ assert_not_equal(s1.to_ptr.to_i, s2.to_ptr.to_i)
+ end
+
def test_sizeof()
assert_equal(DL::SIZEOF_VOIDP, LIBC.sizeof("FILE*"))
assert_equal(LIBC::MyStruct.size(), LIBC.sizeof(LIBC::MyStruct))