<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/tests/run-make/libtest-json, branch master</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=master</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=master'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2025-08-06T23:59:47+00:00</updated>
<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>Try to write the panic message with a single `write_all` call</title>
<updated>2025-01-01T14:58:29+00:00</updated>
<author>
<name>John Kåre Alsaker</name>
<email>john.kare.alsaker@gmail.com</email>
</author>
<published>2024-03-15T18:09:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=4bf85c25eceee6172ed3892570f36b5d06d5177f'/>
<id>urn:sha1:4bf85c25eceee6172ed3892570f36b5d06d5177f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Port `run-make/libtest-json/validate_json.py` to Rust</title>
<updated>2024-08-17T08:15:38+00:00</updated>
<author>
<name>Zalathar</name>
<email>Zalathar@users.noreply.github.com</email>
</author>
<published>2024-08-17T07:56:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=3116db669c4e80ffdae5a34a8dd9bcfba4b1a9be'/>
<id>urn:sha1:3116db669c4e80ffdae5a34a8dd9bcfba4b1a9be</id>
<content type='text'>
This is a trivial Python script that simply tries to parse each line of stdin
(i.e. the test process output) as JSON, to verify that the overall output is
JSON Lines.

We can perform the same check directly in `rmake.rs` using `serde_json`.
</content>
</entry>
<entry>
<title>Port `run-make/libtest-json` to rmake</title>
<updated>2024-08-13T03:27:15+00:00</updated>
<author>
<name>Zalathar</name>
<email>Zalathar@users.noreply.github.com</email>
</author>
<published>2024-08-13T02:55:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=c4aa7a71a9cf16a242530fc1c3aedffb8567cba3'/>
<id>urn:sha1:c4aa7a71a9cf16a242530fc1c3aedffb8567cba3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Change default panic handler message format.</title>
<updated>2023-07-29T09:42:50+00:00</updated>
<author>
<name>Mara Bos</name>
<email>m-ou.se@m-ou.se</email>
</author>
<published>2023-06-20T17:16:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=0e729404da1e741e26a398192fcd1614514117cf'/>
<id>urn:sha1:0e729404da1e741e26a398192fcd1614514117cf</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add needs-unwind annotations to tests that need stack unwinding</title>
<updated>2023-05-02T12:07:55+00:00</updated>
<author>
<name>bjorn3</name>
<email>17426603+bjorn3@users.noreply.github.com</email>
</author>
<published>2023-05-02T10:53:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=8a08514dbd75d33a82bc32fb53dc1de3cd9fc308'/>
<id>urn:sha1:8a08514dbd75d33a82bc32fb53dc1de3cd9fc308</id>
<content type='text'>
</content>
</entry>
<entry>
<title>ignore failing cross-compiled run-make tests</title>
<updated>2023-03-30T13:46:31+00:00</updated>
<author>
<name>Joshua Nelson</name>
<email>github@jyn.dev</email>
</author>
<published>2023-03-30T13:46:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=4851d5663cf74fafc1d753d68394ea0011cfde36'/>
<id>urn:sha1:4851d5663cf74fafc1d753d68394ea0011cfde36</id>
<content type='text'>
`run-make-fulldeps` is never cross-compiled, so a lot of these tests
never accounted for --target. Ignore them when cross-compiling for
now.
</content>
</entry>
<entry>
<title>Move almost all run-make-fulldeps to run-make</title>
<updated>2023-03-30T12:34:55+00:00</updated>
<author>
<name>Joshua Nelson</name>
<email>github@jyn.dev</email>
</author>
<published>2023-03-30T12:34:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=433da1fc047bb39a263eefca4bdb2b1972f1d2ce'/>
<id>urn:sha1:433da1fc047bb39a263eefca4bdb2b1972f1d2ce</id>
<content type='text'>
They pass fine.
</content>
</entry>
</feed>
