Skip to content

Commit

Permalink
Disable unixsocket client tests #2014
Browse files Browse the repository at this point in the history
Signed-off-by: Greg Wilkins <gregw@webtide.com>
  • Loading branch information
gregw committed Jan 31, 2018
1 parent 8c6883a commit b1a5e42
Showing 1 changed file with 5 additions and 3 deletions.
Expand Up @@ -81,9 +81,11 @@ public static Object[] parameters() throws Exception
.map(Transport::valueOf)
.collect(Collectors.toList()).toArray();

if (!OS.IS_UNIX)
return EnumSet.complementOf(EnumSet.of(Transport.UNIX_SOCKET)).toArray();
return Transport.values();
// TODO #2014 too many test failures, don't test unix socket client for now.
if (OS.IS_UNIX)
return Transport.values();

return EnumSet.complementOf(EnumSet.of(Transport.UNIX_SOCKET)).toArray();
}


Expand Down

0 comments on commit b1a5e42

Please sign in to comment.