-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Delete debuginfo test suite infra for gdb without Rust support and lldb with Rust support #129218
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
This comment has been minimized.
This comment has been minimized.
6f64cb0
to
3126289
Compare
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
2faf713
to
68bb911
Compare
This comment has been minimized.
This comment has been minimized.
68bb911
to
259bb30
Compare
@bors try |
Delete debuginfo test suite support for gdb/lldb without native Rust support Implements rust-lang#128953 I also deleted all the `min-lldb-version: 310` comments, because the oldest compatible distro I can find is Ubuntu 16.04 which ships lldb 3.8, though of course the package that the Ubuntu maintainers put together for that is broken. r? `@ghost` try-job: aarch64-apple try-job: aarch64-gnu try-job: dist-i586-gnu-i586-i686-musl try-job: i686-gnu try-job: i686-gnu-nopt try-job: i686-mingw try-job: i686-msvc try-job: test-various try-job: x86_64-apple-1
This comment has been minimized.
This comment has been minimized.
💔 Test failed - checks-actions |
☔ The latest upstream changes (presumably #128982) made this pull request unmergeable. Please resolve the merge conflicts. |
259bb30
to
355bf05
Compare
@bors try |
Delete debuginfo test suite support for gdb/lldb without native Rust support Implements rust-lang#128953 I also deleted all the `min-lldb-version: 310` comments, because the oldest compatible distro I can find is Ubuntu 16.04 which ships lldb 3.8, though of course the package that the Ubuntu maintainers put together for that is broken. Rocky Linux 8 amusingly ships lldb 17, even though it has a similar glibc and kernel version. This PR is multiple highly mechanical changes. Some of the commits were created by just running `sed`. You may find it easier to review each commit separately. try-job: x86_64-apple-1
💔 Test failed - checks-actions |
355bf05
to
22ed23d
Compare
14f0e8f
to
b2dae98
Compare
@bors try |
Delete debuginfo test suite support for gdb/lldb without native Rust support Implements rust-lang#128953 I also deleted all the `min-lldb-version: 310` comments, because the oldest compatible distro I can find is Ubuntu 16.04 which ships lldb 3.8, though of course the package that the Ubuntu maintainers put together for that is broken. Rocky Linux 8 amusingly ships lldb 17, even though it has a similar glibc and kernel version. This PR is multiple highly mechanical changes. Some of the commits were created by just running `sed`. You may find it easier to review each commit separately. try-job: x86_64-apple-1 try-job: aarch64-apple
☀️ Try build successful - checks-actions |
Some changes occurred in src/tools/compiletest cc @jieyouxu |
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.
Very nice cleanup + fixes 💚
src/tools/compiletest/src/runtest.rs
Outdated
println!("NOTE: compiletest thinks it is using GDB without native rust support"); | ||
PREFIXES | ||
}; | ||
let prefixes = &["gdb"]; |
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.
Remark: nice
☀️ Test successful - checks-actions |
Finished benchmarking commit (4fe1e2b): 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)This benchmark run did not return any relevant results for this metric. CyclesResults (secondary -2.2%)This 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.
Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 749.421s -> 749.361s (-0.01%) |
Implements #128953
I also deleted all the
min-lldb-version: 310
comments, because the oldest compatible distro I can find is Ubuntu 16.04 which ships lldb 3.8, though of course the package that the Ubuntu maintainers put together for that is broken.Rocky Linux 8 amusingly ships lldb 17, even though it has a similar glibc and kernel version.
This PR is multiple highly mechanical changes. Some of the commits were created by just running
sed
. You may find it easier to review each commit separately.