-
Notifications
You must be signed in to change notification settings - Fork 10.5k
[RemoteMirrors] Fix losing the remote address on StaticMirror #82981
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
Conversation
@swift-ci smoke test |
@@ -5,7 +5,6 @@ | |||
// | |||
// Temporarily disable on AArch64 Linux (rdar://88451721) | |||
// UNSUPPORTED: OS=linux-gnu && CPU=aarch64 |
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.
Do we still need this marked as unsupported on Linux?
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.
That one seems unrelated to this change.
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.
Adrian claimed this test was now passing on linux AArch64, hence Evan's question.
@@ -10,7 +10,6 @@ | |||
|
|||
// FIXME: rdar://127796117 | |||
// UNSUPPORTED: OS=linux-gnu && CPU=aarch64 |
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.
Do we still need this marked as unsupported on Linux?
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.
Same as above.
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.
Same passing claim as above, can probably be checked by enabling them and running the linux AArch64 CI on this pull.
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.
Ok, I removed it, lets see if it works
57f3a64
to
3c331fc
Compare
@swift-ci smoke test |
I can confirm applying this locally also fixes those two tests in my setup. Thanks! |
@swift-ci please build toolchain Ubuntu 22.04 aarch64 |
Swift Build Toolchain Ubuntu 22.04 (aarch64) Failure:
|
I don't think that failure is related to this change |
I agree. Just had a script watch the PR for failed builds and extract failures for documenting purposes. |
@swift-ci please build toolchain UBI9 aarch64 |
That's a useful script! |
@etcwilde did this work? I don't see it running |
Yeah, I'm not sure we have a trigger for aarch64 UBI9. Was worth a try. |
The Offset field of a DynamicRelocation is either an offset or a remote address, but was being treated only as a remote address on getDynamicSymbol.
3c331fc
to
b6ce889
Compare
@swift-ci smoke test |
I want to cherry-pick this into 6.2, so to play it safe, I'll keep those tests unsupported in this PR, and open a separate PR reenabling those tests after this is merged. |
@swift-ci smoke test Windows |
There is a UBI 9 aarch64 CI job, so it would flag the issue once committed, if this still didn't work. Not sure about manual pre-commit CI triggers though, is there a list somewhere public? The official doc is way behind. |
The Offset field of a DynamicRelocation is either an offset or a remote address, but was being treated only as a remote address on getDynamicSymbol.