Skip to content
This repository has been archived by the owner on Oct 16, 2021. It is now read-only.

Commit

Permalink
test: skip cluster-disconnect-race on Windows
Browse files Browse the repository at this point in the history
PR-URL: nodejs/node#5621
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Alexis Campailla <[email protected]>
  • Loading branch information
gibfahn authored and jBarz committed Nov 4, 2016
1 parent 609f7cb commit 258c159
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 258c159

Please sign in to comment.