Uh oh!
There was an error while loading. Please reload this page.
Fix src/test/run-make/issue-36710 on cross-compiled targets - #103179
Conversation
rust-highfive
commented
Oct 18, 2022
r? @jyn514 (rust-highfive has picked a reviewer for you, use r? to override) |
jyn514
left a comment
There was a problem hiding this comment.
Thanks! The code to support cross compiling seems reasonable, but the number of new ignores makes me worried you've missed a target and this will fail on the full test suite. I guess we can just try it and see though.
There was a problem hiding this comment.
Why is this a FIXME? How would CUDA ever get support for libstd? (Is there some way we can say "ignore all targets without std"?)
There was a problem hiding this comment.
That was present before #102723 (which I reverted), I don't have context on why those are fixmes.
There was a problem hiding this comment.
The commit message adding this originally says 1fa48cf
nvtptx64-nvidia-cuda fails in rustc saying it can't find std. The rust
platforms support page says that std is supported on cuda so this is
surprising.
sounds like something is broken here but no need to fix it in your PR. cc @RDambrosio016 in case you know who maintains this target.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
jyn514
commented
Oct 18, 2022
@bors rollup=iffy |
jyn514
commented
Oct 18, 2022
@bors r+ |
bors
commented
Oct 18, 2022
📌 Commit ca362edbdde20d7592643142ea2f00e9f65e2a9e has been approved by It is now in the queue for this repository. |
emilyalbini
commented
Oct 24, 2022
Bors seemed to have lost the r+. @bors r=jyn514 |
bors
commented
Oct 24, 2022
📌 Commit ca362edbdde20d7592643142ea2f00e9f65e2a9e has been approved by It is now in the queue for this repository. |
bors
commented
Oct 24, 2022
⌛ Testing commit ca362edbdde20d7592643142ea2f00e9f65e2a9e with merge eab05ae07aab4737b537dd0da052a7bcb2f21e99... |
bors
commented
Oct 24, 2022
💔 Test failed - checks-actions |
This comment has been minimized.
This comment has been minimized.
emilyalbini
commented
Oct 25, 2022
Installed the missing compiler in that builder, hopefully this is the only builder where it's missing 🤞 |
jyn514
commented
Oct 27, 2022
@bors r+ rollup=iffy |
bors
commented
Oct 27, 2022
📌 Commit cb096c148285f5f1146ec1a61cf0b297c78ec473 has been approved by It is now in the queue for this repository. |
bors
commented
Oct 30, 2022
⌛ Testing commit cb096c148285f5f1146ec1a61cf0b297c78ec473 with merge fa8492c23ff5f8d57adf27c88dda77a1477623c8... |
bors
commented
Oct 30, 2022
💔 Test failed - checks-actions |
This comment has been minimized.
This comment has been minimized.
emilyalbini
commented
Nov 3, 2022
Android failed because of two problems:
I fixed both of the problems and successfully ran the |
bors
commented
Nov 14, 2022
☔ The latest upstream changes (presumably #104188) made this pull request unmergeable. Please resolve the merge conflicts. |
jyn514
commented
Nov 17, 2022
Sorry for the delay. r=me after a rebase. |
This reverts commit 0567fec.
When running tests inside the Android emulator, bootstrap doesn't set the TEST_DEVICE_ADDR environment variable, as the default address (127.0.0.1:12345) is used. Instead, REMOTE_TEST_CLIENT is set all the times when remote testing is needed, and in no other cases. To ensure Android tests are executed in the emulator, change the check.
6272ce4 to
6bfbd11Compareemilyalbini
commented
Nov 17, 2022
@bors r=jyn514 |
bors
commented
Nov 17, 2022
bors
commented
Nov 17, 2022
🌲 The tree is currently closed for pull requests below priority 1. This pull request will be tested once the tree is reopened. |
emilyalbini
commented
Nov 17, 2022
@bors r=jyn514 |
bors
commented
Nov 17, 2022
bors
commented
Nov 17, 2022
🌲 The tree is currently closed for pull requests below priority 1. This pull request will be tested once the tree is reopened. |
bors
commented
Nov 18, 2022
bors
commented
Nov 18, 2022
☀️ Test successful - checks-actions |
rust-timer
commented
Nov 18, 2022
Finished benchmarking commit (30117a1): comparison URL. Overall result: no relevant changes - no action needed@rustbot label: -perf-regression Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)ResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
CyclesThis benchmark run did not return any relevant results for this metric. |
This PR fixes the
src/test/run-make/issue-36710test not working on cross-compiled targets by telling the make infra how to run tests remotely withremote-test-server.This PR includes a revert of #102723 (cc @pcc), which disabled that test on all cross-compiled targets.