-
Notifications
You must be signed in to change notification settings - Fork 30.5k
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
Test parallel/test-setproctitle.js fails on alpine #12399
Labels
good first issue
Issues that are suitable for first-time contributors.
process
Issues and PRs related to the process subsystem.
test
Issues and PRs related to the tests.
Comments
Pull request welcome, I'd say. However:
That won't fly, it's Linux-only. |
3 tasks
evanlucas
pushed a commit
that referenced
this issue
Apr 25, 2017
Since Busybox ps does not support -p switch, using ps -o and grep instead to get the process title and then check it. PR-URL: #12413 Fixes: #12399 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Yuta Hiroto <[email protected]>
evanlucas
pushed a commit
that referenced
this issue
May 1, 2017
Since Busybox ps does not support -p switch, using ps -o and grep instead to get the process title and then check it. PR-URL: #12413 Fixes: #12399 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Yuta Hiroto <[email protected]>
evanlucas
pushed a commit
that referenced
this issue
May 2, 2017
Since Busybox ps does not support -p switch, using ps -o and grep instead to get the process title and then check it. PR-URL: #12413 Fixes: #12399 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Yuta Hiroto <[email protected]>
3 tasks
DavidCai1111
added a commit
to DavidCai1111/node
that referenced
this issue
Jun 19, 2017
Since Busybox ps does not support -p switch, using ps -o and grep instead to get the process title and then check it. PR-URL: nodejs#12413 Fixes: nodejs#12399 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Yuta Hiroto <[email protected]>
MylesBorins
pushed a commit
that referenced
this issue
Jul 10, 2017
Since Busybox ps does not support -p switch, using ps -o and grep instead to get the process title and then check it. Backport-PR-URL: #13072 PR-URL: #12413 Fixes: #12399 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Yuta Hiroto <[email protected]>
MylesBorins
pushed a commit
that referenced
this issue
Jul 11, 2017
Since Busybox ps does not support -p switch, using ps -o and grep instead to get the process title and then check it. Backport-PR-URL: #13072 PR-URL: #12413 Fixes: #12399 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Yuta Hiroto <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
good first issue
Issues that are suitable for first-time contributors.
process
Issues and PRs related to the process subsystem.
test
Issues and PRs related to the tests.
I've been trying to get the full testsuite to run while building a docker image based on
FROM alpine:latest
. Theparallel/test-setproctitle.js
seems to be the only failing test. Thats due to BusyBox ps doesn't support the-p
switch. Installing procps package before compiling/testing solves this but could the test instead be refactored to remove this dependency? Using either/proc/[pid]/comm
or/proc/[pid]/stat
directly instead?Cheers
The text was updated successfully, but these errors were encountered: