summaryrefslogtreecommitdiff
path: root/test/dl
diff options
context:
space:
mode:
Diffstat (limited to 'test/dl')
-rw-r--r--test/dl/test_handle.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/dl/test_handle.rb b/test/dl/test_handle.rb
index 0345e96e63..a128805521 100644
--- a/test/dl/test_handle.rb
+++ b/test/dl/test_handle.rb
@@ -22,6 +22,7 @@ module DL
end
def test_static_sym
+ skip "DL::Handle.sym is not supported" if /mswin|mingw/ =~ RUBY_PLATFORM
assert_not_nil DL::Handle.sym('dlopen')
assert_equal DL::Handle.sym('dlopen'), DL::Handle['dlopen']
end
@@ -124,6 +125,7 @@ module DL
end
def test_NEXT
+ skip "DL::Handle::NEXT is not supported" if /mswin|mingw/ =~ RUBY_PLATFORM
begin
# Linux / Darwin
#
@@ -156,6 +158,7 @@ module DL
end
def test_DEFAULT
+ skip "DL::Handle::DEFAULT is not supported" if /mswin|mingw/ =~ RUBY_PLATFORM
handle = DL::Handle::DEFAULT
assert_not_nil handle['malloc']
end