-
Notifications
You must be signed in to change notification settings - Fork 29.7k
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
vsemozhetbyt
added
process
Issues and PRs related to the process subsystem.
test
Issues and PRs related to the tests.
labels
Apr 13, 2017
Pull request welcome, I'd say. However:
That won't fly, it's Linux-only. |
bnoordhuis
added
the
good first issue
Issues that are suitable for first-time contributors.
label
Apr 13, 2017
3 tasks
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 <jasnell@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
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 <jasnell@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
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 <jasnell@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
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: