Skip to content

Commit

Permalink
test: disable dgram-bind-shared-ports on win32
Browse files Browse the repository at this point in the history
Windows currently doesn't support clustered dgram sockets, when it does
re-enable this test
  • Loading branch information
tjfontaine committed Sep 24, 2014
1 parent 2f7234d commit f773fb4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/simple/test-dgram-bind-shared-ports.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ var assert = require('assert');
var cluster = require('cluster');
var dgram = require('dgram');

// TODO XXX FIXME when windows supports clustered dgram ports re-enable this
// test
if (process.platform == 'win32')
process.exit(0);

function noop() {}

if (cluster.isMaster) {
Expand Down

0 comments on commit f773fb4

Please sign in to comment.