- Notifications
You must be signed in to change notification settings - Fork 13.9k
Open
Labels
A-tidyArea: The tidy toolArea: The tidy toolE-needs-investigationCall for partcipation: This issues needs some investigation to determine current statusCall for partcipation: This issues needs some investigation to determine current statusT-bootstrapRelevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap)Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap)needs-triageThis issue may need triage. Remove it if it has been sufficiently triaged.This issue may need triage. Remove it if it has been sufficiently triaged.
Description
With node.js-22.20.0 (npm-10.9.3) installed, a test checking if /usr/bin/npm --verbose
returns exit code 0 fails. This is because npm's behavior when not given a command will return exit code 1. As far as npm is concerned, it wasn't given a command, like help
, even though the --verbose
option was passed. However, passing help
to the npm command will return exit code 0
as intended. So the command to run would be /usr/bin/npm --verbose help
. This should make the test succeed.
The file seeming to cause it is src/bootstrap/src/core/build_steps/test.rs.
Metadata
Metadata
Assignees
Labels
A-tidyArea: The tidy toolArea: The tidy toolE-needs-investigationCall for partcipation: This issues needs some investigation to determine current statusCall for partcipation: This issues needs some investigation to determine current statusT-bootstrapRelevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap)Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap)needs-triageThis issue may need triage. Remove it if it has been sufficiently triaged.This issue may need triage. Remove it if it has been sufficiently triaged.