-
-
Notifications
You must be signed in to change notification settings - Fork 5.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
Move realpath()
earlier in cmdlineargs
test
#34506
Conversation
6773f18
to
ccd1548
Compare
ccd1548
to
394eca4
Compare
@@ -600,6 +600,7 @@ end | |||
end | |||
|
|||
mktempdir() do dir | |||
dir = realpath(dir) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If this is needed on Windows, shouldn’t it be part of the mktempdir implementation?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think probably yes.
e5e30b0
to
a0d7eb7
Compare
I'm still confused about the real source of the bug here. Why do we need the Currently, I just checked, and none of I see three options:
|
Bump, all Windows CI currently fails so it would be good to do something here. |
I think it's fine to merge this for now and debate whether we want to call |
These tests are probably demonstrating bad practice and should be using |
I think Jameson is correct; I think the reason the |
These should probably be using `samefile`, if they were real code instead of just tests. Though it's unclear why real code would be doing this. Maybe just don't put your paths in hash-tables and you'll normally be fine. (cherry picked from commit a5c422f)
These should probably be using `samefile`, if they were real code instead of just tests. Though it's unclear why real code would be doing this. Maybe just don't put your paths in hash-tables and you'll normally be fine. (cherry picked from commit a5c422f)
These should probably be using `samefile`, if they were real code instead of just tests. Though it's unclear why real code would be doing this. Maybe just don't put your paths in hash-tables and you'll normally be fine.
This should hopefully fix issues such as #34418 (comment)