From f773fb41cc2a59f981146763e9f378f9a8586714 Mon Sep 17 00:00:00 2001 From: Timothy J Fontaine Date: Wed, 24 Sep 2014 14:13:58 -0700 Subject: [PATCH] test: disable dgram-bind-shared-ports on win32 Windows currently doesn't support clustered dgram sockets, when it does re-enable this test --- test/simple/test-dgram-bind-shared-ports.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/simple/test-dgram-bind-shared-ports.js b/test/simple/test-dgram-bind-shared-ports.js index 709d3ad551..c9e22b5921 100644 --- a/test/simple/test-dgram-bind-shared-ports.js +++ b/test/simple/test-dgram-bind-shared-ports.js @@ -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) {