Skip to content

Commit

Permalink
fixup: skip if in a FreeBSD jail
Browse files Browse the repository at this point in the history
  • Loading branch information
Trott committed Nov 28, 2015
1 parent 0f2782b commit 8021d83
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/internet/test-dgram-multicast-multi-process.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ const messages = [
new Buffer('Fourth message to send')
];

// skip test in FreeBSD jails
if (common.inFreeBSDJail) {
console.log('1..0 # Skipped: In a FreeBSD jail');
return;
}

function launchChildProcess(index) {
const worker = fork(process.argv[1], ['child']);
workers[worker.pid] = worker;
Expand Down

0 comments on commit 8021d83

Please sign in to comment.