Skip to content

Commit

Permalink
test: skip test if FreeBSD jail will break it
Browse files Browse the repository at this point in the history
  • Loading branch information
Trott committed Nov 15, 2015
1 parent 84f0964 commit 975817f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/internet/test-dgram-broadcast-multi-process.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ var common = require('../common'),
new Buffer('Fourth message to send')
];

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

// take the first non-internal interface as the address for binding
get_bindAddress: for (var name in networkInterfaces) {
var interfaces = networkInterfaces[name];
Expand Down

0 comments on commit 975817f

Please sign in to comment.