Skip to content

Commit

Permalink
Inverted logic running unix tests on windows
Browse files Browse the repository at this point in the history
enebo committed Apr 7, 2016
1 parent 4b8fb1c commit 491a2ce
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/externals/ruby1.9/excludes/TestSocket.rb
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@

exclude :test_accept_loop, "needs investigation"
exclude :test_accept_loop_multi_port, "needs investigation"
exclude :test_accept_loop_with_unix, "needs investigation" if windows
exclude :test_accept_loop_with_unix, "needs investigation" if !windows
exclude :test_closed_read, "needs investigation"
exclude :test_getaddrinfo, "needs investigation"
exclude :test_getaddrinfo_raises_no_errors_on_port_argument_of_0, "needs investigation"
@@ -16,8 +16,8 @@
exclude :test_tcp_server_sockets, "needs investigation"
exclude :test_tcp_server_sockets_port0, "needs investigation"
exclude :test_udp_server, "needs investigation"
exclude :test_unix, "needs investigation" if windows
exclude :test_unix_server_socket, "needs investigation" if windows
exclude :test_unix, "needs investigation" if !windows
exclude :test_unix_server_socket, "needs investigation" if !windows
exclude :test_unpack_sockaddr, "needs investigation"


0 comments on commit 491a2ce

Please sign in to comment.