Skip to content

Commit

Permalink
test: skip cluster-disconnect-race on Windows
Browse files Browse the repository at this point in the history
PR-URL: #5621
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Alexis Campailla <orangemocha@nodejs.org>
  • Loading branch information
gibfahn authored and jasnell committed Mar 16, 2016
1 parent 9c06db7 commit ab907eb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/simple/test-cluster-disconnect-race.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ var net = require('net');
var cluster = require('cluster');
cluster.schedulingPolicy = cluster.SCHED_NONE;

if (process.platform === 'win32') {
console.log('1..0 # Skipped: This test does not apply to Windows.');
return;
}

if (cluster.isMaster) {
var worker1, worker2;

Expand Down

0 comments on commit ab907eb

Please sign in to comment.