-
Notifications
You must be signed in to change notification settings - Fork 29.8k
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
Revert "path,win: fix bug in resolve and normalize" #56088
Open
Flarna
wants to merge
2
commits into
nodejs:main
Choose a base branch
from
Flarna:revert-win-path-resolve
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+40
−45
Conversation
This file contains 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
This reverts commit 7f68e54.
Add a test to verify named pipe enumeration in windows works.
nodejs-github-bot
added
c++
Issues and PRs that require attention from people who are familiar with C++.
needs-ci
PRs that need a full CI run.
path
Issues and PRs related to the path subsystem.
labels
Nov 29, 2024
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #56088 +/- ##
==========================================
- Coverage 88.00% 87.99% -0.01%
==========================================
Files 656 656
Lines 189000 188989 -11
Branches 35995 35983 -12
==========================================
- Hits 166320 166301 -19
- Misses 15840 15853 +13
+ Partials 6840 6835 -5
|
After testing locally, I can use vscode to debug normally after merging. |
lpinca
approved these changes
Nov 30, 2024
If/when this lands, #54025 should be reopened. |
aduh95
added
author ready
PRs that have at least one approval, no pending requests for changes, and a CI started.
request-ci
Add this label to start a Jenkins CI on a PR.
commit-queue-rebase
Add this label to allow the Commit Queue to land a PR in several commits.
labels
Nov 30, 2024
github-actions
bot
removed
the
request-ci
Add this label to start a Jenkins CI on a PR.
label
Nov 30, 2024
@huseyinacacak-janea fine for me. Please include the test I added here (second commit) or a similar one in your PR. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
author ready
PRs that have at least one approval, no pending requests for changes, and a CI started.
c++
Issues and PRs that require attention from people who are familiar with C++.
commit-queue-rebase
Add this label to allow the Commit Queue to land a PR in several commits.
needs-ci
PRs that need a full CI run.
path
Issues and PRs related to the path subsystem.
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.
This reverts commit 7f68e54.
fixes: #56002
Refs: #55623
Reopens: #54025
Additionally add a test to verify enumeration of windows named pipes works.
Seems normalization of path names of devices requires the trailing
\
at least in some cases like debugger.Not sure if revert is the best way to go, maybe there is a better fix. Happy to close this revert PR in case of a better proposal.
fyi @huseyinacacak-janea