summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-socket/test
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2017-12-14 00:03:34 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2017-12-14 00:05:23 +0900
commit69ad12de06d3b85dc7323170f699e0c75c072db7 (patch)
tree39fe8fa5cedd71c03e9517dc936f67cda17936e9 /mrbgems/mruby-socket/test
parentd2163d13a8b7ab182787c799e9158ff71426508c (diff)
downloadmruby-69ad12de06d3b85dc7323170f699e0c75c072db7.tar.gz
mruby-69ad12de06d3b85dc7323170f699e0c75c072db7.zip
Exclude `UNIXSocket` tests again; ref #3878
Diffstat (limited to 'mrbgems/mruby-socket/test')
-rw-r--r--mrbgems/mruby-socket/test/unix.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/mrbgems/mruby-socket/test/unix.rb b/mrbgems/mruby-socket/test/unix.rb
index 88ad17101..2a29ddae7 100644
--- a/mrbgems/mruby-socket/test/unix.rb
+++ b/mrbgems/mruby-socket/test/unix.rb
@@ -1,3 +1,5 @@
+unless SocketTest.win?
+
def unixserver_test_block
path = SocketTest.tmppath
File.unlink path rescue nil
@@ -124,3 +126,5 @@ assert('UNIXSocket#recvfrom') do
# a[1][1] would be "" or something
end
end
+
+end # SocketTest.win?