-
-
Notifications
You must be signed in to change notification settings - Fork 35.4k
test: eliminate multicast test FreeBSD flakiness #4042
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
c623001
0f2782b
8021d83
0b5c3cb
26b56c0
9b527da
fef9193
71470b5
615356a
ccafb10
bd8a3c1
ec975e4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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']); | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sure, why not. |
||
| workers[worker.pid] = worker; | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe hoist
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, that does make it easier to follow. I'll also fix up the remaining bits of the related |
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Funny indent but if the linter is happy...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since I'm doing a bunch of other cosmetic-ish changes on the pre-existing code, I'll fix the funky indent.