Skip to content

Commit 8021d83

Browse files
committed
fixup: skip if in a FreeBSD jail
1 parent 0f2782b commit 8021d83

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

test/internet/test-dgram-multicast-multi-process.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@ const messages = [
1313
new Buffer('Fourth message to send')
1414
];
1515

16+
// skip test in FreeBSD jails
17+
if (common.inFreeBSDJail) {
18+
console.log('1..0 # Skipped: In a FreeBSD jail');
19+
return;
20+
}
21+
1622
function launchChildProcess(index) {
1723
const worker = fork(process.argv[1], ['child']);
1824
workers[worker.pid] = worker;

0 commit comments

Comments
 (0)