Uh oh!
There was an error while loading. Please reload this page.
test: reduce unmanaged parallelism in test - #10329
Closed
joyeecheung wants to merge 1 commit into
Closed
Conversation
The original test lauches 10 child processes at once and bypass `test.py`'s process regulation. This PR reduces the unmanaged parallelism and is a temporary workaround for nodejs#9979 (not a real fix).
addaleax
approved these changes
Dec 19, 2016
joyeecheung
commented
Dec 22, 2016
MemberAuthor
Ping. The ARM build failure on the CI looks unrelated? |
Trott
commented
Dec 22, 2016
Member
Not just unrelated, but non-existent! Ci is green. The widget has been incorrectly reporting ARM failures for a few days now. (I'm not sure if the issue is something on the build infra side or the github bot side. So I'm not even sure who to ping about it!) TL;DR: CI is ✅ |
Trott pushed a commit
to Trott/io.js
that referenced
this pull request
Dec 22, 2016
The original test lauches 10 child processes at once and bypass `test.py`'s process regulation. This PR reduces the unmanaged parallelism and is a temporary workaround for nodejs#9979 (not a real fix). PR-URL: nodejs#10329 Reviewed-By: Anna Henningsen <anna@addaleax.net>
Trott
commented
Dec 22, 2016
Member
Landed in a165232. |
italoacasas pushed a commit
to italoacasas/node
that referenced
this pull request
Jan 18, 2017
The original test lauches 10 child processes at once and bypass `test.py`'s process regulation. This PR reduces the unmanaged parallelism and is a temporary workaround for nodejs#9979 (not a real fix). PR-URL: nodejs#10329 Reviewed-By: Anna Henningsen <anna@addaleax.net>
italoacasas pushed a commit
to italoacasas/node
that referenced
this pull request
Jan 19, 2017
The original test lauches 10 child processes at once and bypass `test.py`'s process regulation. This PR reduces the unmanaged parallelism and is a temporary workaround for nodejs#9979 (not a real fix). PR-URL: nodejs#10329 Reviewed-By: Anna Henningsen <anna@addaleax.net>
italoacasas pushed a commit
to italoacasas/node
that referenced
this pull request
Jan 25, 2017
The original test lauches 10 child processes at once and bypass `test.py`'s process regulation. This PR reduces the unmanaged parallelism and is a temporary workaround for nodejs#9979 (not a real fix). PR-URL: nodejs#10329 Reviewed-By: Anna Henningsen <anna@addaleax.net>
italoacasas pushed a commit
to italoacasas/node
that referenced
this pull request
Jan 27, 2017
The original test lauches 10 child processes at once and bypass `test.py`'s process regulation. This PR reduces the unmanaged parallelism and is a temporary workaround for nodejs#9979 (not a real fix). PR-URL: nodejs#10329 Reviewed-By: Anna Henningsen <anna@addaleax.net>
Merged
italoacasas pushed a commit
to italoacasas/node
that referenced
this pull request
Jan 30, 2017
The original test lauches 10 child processes at once and bypass `test.py`'s process regulation. This PR reduces the unmanaged parallelism and is a temporary workaround for nodejs#9979 (not a real fix). PR-URL: nodejs#10329 Reviewed-By: Anna Henningsen <anna@addaleax.net>
italoacasas pushed a commit
to italoacasas/node
that referenced
this pull request
Jan 30, 2017
The original test lauches 10 child processes at once and bypass `test.py`'s process regulation. This PR reduces the unmanaged parallelism and is a temporary workaround for nodejs#9979 (not a real fix). PR-URL: nodejs#10329 Reviewed-By: Anna Henningsen <anna@addaleax.net>
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The original test lauches 10 child processes at once
and bypass
test.py's process regulation.This PR reduces the unmanaged parallelism and is a
temporary workaround for #9979 (not a real fix).
Checklist
make -j4 test(UNIX), orvcbuild test(Windows) passesAffected core subsystem(s)
test
Description of change
Ref: