<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/tests/ui/test-attrs, branch cargo_update</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=cargo_update</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=cargo_update'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2025-09-26T13:33:48+00:00</updated>
<entry>
<title>Ignore more failing ui tests for GCC backend</title>
<updated>2025-09-26T13:33:48+00:00</updated>
<author>
<name>Guillaume Gomez</name>
<email>guillaume1.gomez@gmail.com</email>
</author>
<published>2025-09-26T11:59:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=a535c7be5444fb6584eecc99f53e6cdb710ff70f'/>
<id>urn:sha1:a535c7be5444fb6584eecc99f53e6cdb710ff70f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add more docs to templates for attrs with incorrect arguments</title>
<updated>2025-08-11T17:02:32+00:00</updated>
<author>
<name>Esteban Küber</name>
<email>esteban@kuber.com.ar</email>
</author>
<published>2025-08-11T17:02:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=32ee26c625e8fbb7a3aa56788cbb352f04491964'/>
<id>urn:sha1:32ee26c625e8fbb7a3aa56788cbb352f04491964</id>
<content type='text'>
</content>
</entry>
<entry>
<title>mbe: In error messages, don't assume attributes are always proc macros</title>
<updated>2025-08-08T17:35:47+00:00</updated>
<author>
<name>Josh Triplett</name>
<email>josh@joshtriplett.org</email>
</author>
<published>2025-07-28T10:00:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=2054a0c56b063c195d316e4ff44d0c9f8ad2c012'/>
<id>urn:sha1:2054a0c56b063c195d316e4ff44d0c9f8ad2c012</id>
<content type='text'>
Now that `macro_rules` macros can define attribute rules, make sure
error messages account for that.
</content>
</entry>
<entry>
<title>Rollup merge of #143808 - JonathanBrouwer:should_panic_parser, r=jdonszelmann</title>
<updated>2025-08-07T10:49:40+00:00</updated>
<author>
<name>Stuart Cook</name>
<email>Zalathar@users.noreply.github.com</email>
</author>
<published>2025-08-07T10:49:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=995ca3e532b48b689567533e6b736675e38b741e'/>
<id>urn:sha1:995ca3e532b48b689567533e6b736675e38b741e</id>
<content type='text'>
Port `#[should_panic]` to the new attribute parsing infrastructure

Ports `#[should_panic]` to the new attribute parsing infrastructure for https://github.com/rust-lang/rust/issues/131229#issuecomment-2971351163

r? ```@jdonszelmann```
</content>
</entry>
<entry>
<title>Print thread ID in panic message if thread name is unknown</title>
<updated>2025-08-06T23:59:47+00:00</updated>
<author>
<name>Trevor Gross</name>
<email>tmgross@umich.edu</email>
</author>
<published>2023-09-11T04:59:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=289fe36d373c5a13fa7f1b93f39ff88425ab2351'/>
<id>urn:sha1:289fe36d373c5a13fa7f1b93f39ff88425ab2351</id>
<content type='text'>
`panic!` does not print any identifying information for threads that are
unnamed. However, in many cases, the thread ID can be determined.

This changes the panic message from something like this:

    thread '&lt;unnamed&gt;' panicked at src/main.rs:3:5:
    explicit panic

To something like this:

    thread '&lt;unnamed&gt;' (0xff9bf) panicked at src/main.rs:3:5:
    explicit panic

Stack overflow messages are updated as well.

This change applies to both named and unnamed threads. The ID printed is
the OS integer thread ID rather than the Rust thread ID, which should
also be what debuggers print.
</content>
</entry>
<entry>
<title>Changes to the tests for the `#[should_panic]` port</title>
<updated>2025-08-06T19:38:00+00:00</updated>
<author>
<name>Jonathan Brouwer</name>
<email>jonathantbrouwer@gmail.com</email>
</author>
<published>2025-07-11T16:37:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=4281e05a209a15a4b2de63ea5a552fc59f8bd0f1'/>
<id>urn:sha1:4281e05a209a15a4b2de63ea5a552fc59f8bd0f1</id>
<content type='text'>
Signed-off-by: Jonathan Brouwer &lt;jonathantbrouwer@gmail.com&gt;
</content>
</entry>
<entry>
<title>Rollup merge of #142214 - Kivooeo:tf9, r=jieyouxu</title>
<updated>2025-06-29T10:29:54+00:00</updated>
<author>
<name>Guillaume Gomez</name>
<email>guillaume1.gomez@gmail.com</email>
</author>
<published>2025-06-29T10:29:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=15b227f71532fffcab7663ffc1b2711e955a02de'/>
<id>urn:sha1:15b227f71532fffcab7663ffc1b2711e955a02de</id>
<content type='text'>
`tests/ui`: A New Order [9/N]

Some `tests/ui/` housekeeping, to trim down number of tests directly under `tests/ui/`. Part of rust-lang/rust#133895.
</content>
</entry>
<entry>
<title>cleaned up some tests</title>
<updated>2025-06-28T12:04:16+00:00</updated>
<author>
<name>Kivooeo</name>
<email>Kivooeo123@gmail.com</email>
</author>
<published>2025-06-08T19:49:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=f4502b8f0eeb0e2f078745cfbbe41b5763be9449'/>
<id>urn:sha1:f4502b8f0eeb0e2f078745cfbbe41b5763be9449</id>
<content type='text'>
</content>
</entry>
<entry>
<title>cleaned up some tests</title>
<updated>2025-06-08T06:25:09+00:00</updated>
<author>
<name>Kivooeo</name>
<email>Kivooeo123@gmail.com</email>
</author>
<published>2025-06-07T11:17:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=85ce9ee481a56bcabaa9480cfc0e2b420e4f1807'/>
<id>urn:sha1:85ce9ee481a56bcabaa9480cfc0e2b420e4f1807</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove backticks from `ShouldPanic::YesWithMessage`'s `TrFailedMsg`</title>
<updated>2025-04-28T19:40:29+00:00</updated>
<author>
<name>Lieselotte</name>
<email>52315535+she3py@users.noreply.github.com</email>
</author>
<published>2025-04-28T19:40:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=55a419f444378afb5eceb361959fa57eefce2be1'/>
<id>urn:sha1:55a419f444378afb5eceb361959fa57eefce2be1</id>
<content type='text'>
</content>
</entry>
</feed>
