Skip to content

Commit ab907eb

Browse files
gibfahnjasnell
authored andcommitted
test: skip cluster-disconnect-race on Windows
PR-URL: #5621 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Alexis Campailla <[email protected]>
1 parent 9c06db7 commit ab907eb

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

test/simple/test-cluster-disconnect-race.js

+5
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ var net = require('net');
99
var cluster = require('cluster');
1010
cluster.schedulingPolicy = cluster.SCHED_NONE;
1111

12+
if (process.platform === 'win32') {
13+
console.log('1..0 # Skipped: This test does not apply to Windows.');
14+
return;
15+
}
16+
1217
if (cluster.isMaster) {
1318
var worker1, worker2;
1419

0 commit comments

Comments
 (0)