-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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
Support pretty printing slices using GDB #85363
Conversation
(rust-highfive has picked a reviewer for you, use r? to override) |
f5721c0
to
1aa6307
Compare
@bors r+ rollup |
📌 Commit 1aa6307 has been approved by |
…ark-Simulacrum Support pretty printing slices using GDB Support pretty printing `&[T]`, `&mut [T]` and `&mut str` types using GDB. Support pretty printing `&mut [T]` and `&mut str` types using LLDB. Fixes rust-lang#85219.
Failed on rollup: #85705 (comment) @bors r- |
1aa6307
to
d5b48f0
Compare
@EFanZh Is this now ready to merge again? |
@Aaron1011 I have fixed the test failure, but I am not very confident about my change. I think someone who is familiar with GDB and LLDB pretty printing should review this before merging it. |
@rustbot label: +S-waiting-on-review -S-waiting-on-author |
r? @michaelwoerister -- I'd like a second opinion before r+'ing this, it seems like it's OK but I'm not very familiar with the details here. |
Thanks for the PR, @EFanZh! I'll take a look shortly. |
d5b48f0
to
0112b90
Compare
📌 Commit 0112b90 has been approved by |
This comment has been minimized.
This comment has been minimized.
💔 Test failed - checks-actions |
I am not sure why pretty-printing does not work on Android target. @michaelwoerister Do you know how to fix this error? |
All the other pretty printer tests seem to ignore android. I think it's fine to do that for |
📌 Commit 2b2bcf1 has been approved by |
⌛ Testing commit 2b2bcf1 with merge 76edd248b0850b0111bc736764e25877568a8ad2... |
This comment has been minimized.
This comment has been minimized.
💔 Test failed - checks-actions |
The i686-mingw-1 test has failed. I ignored the tests on Windows like some other pretty printing tests. @michaelwoerister Is this OK with you? |
13c8598
to
1b0998c
Compare
@bors r+ |
📌 Commit 1b0998c has been approved by |
☀️ Test successful - checks-actions |
Support pretty printing
&[T]
,&mut [T]
and&mut str
types using GDB.Support pretty printing
&mut [T]
and&mut str
types using LLDB.Fixes #85219.