Skip to content

Commit cb08a29

Browse files
sxaaduh95
authored andcommitted
test: skip test-cluster-dgram-reuse on AIX 7.3
Signed-off-by: Stewart X Addison <sxa@ibm.com> PR-URL: #62238 Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
1 parent 4a1f20e commit cb08a29

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/parallel/test-cluster-dgram-reuse.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
'use strict';
22
const common = require('../common');
3+
const os = require('os');
34
if (common.isWindows)
45
common.skip('dgram clustering is currently not supported on windows.');
6+
if (common.isAIX && os.release() === '7.3')
7+
common.skip('dgram clutering with reuse does not work if built on AIX 7.3.');
58

69
const assert = require('assert');
710
const cluster = require('cluster');

0 commit comments

Comments
 (0)