summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy J Fontaine <tjfontaine@gmail.com>2014-09-24 14:13:58 -0700
committerTimothy J Fontaine <tjfontaine@gmail.com>2014-09-24 14:17:42 -0700
commitf773fb41cc2a59f981146763e9f378f9a8586714 (patch)
tree6d47737fe173708ce9e5aaec9ac21ba87da77d8b
parent2f7234d89c3b7e17d6cf341ab12aaffebb337470 (diff)
downloadnode-new-f773fb41cc2a59f981146763e9f378f9a8586714.tar.gz
test: disable dgram-bind-shared-ports on win32
Windows currently doesn't support clustered dgram sockets, when it does re-enable this test
-rw-r--r--test/simple/test-dgram-bind-shared-ports.js5
1 files changed, 5 insertions, 0 deletions
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) {