<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/library/test/src/cli.rs, branch 1.71.0</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=1.71.0</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=1.71.0'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2023-05-24T16:18:20+00:00</updated>
<entry>
<title>libtest: Improve error when missing `-Zunstable-options`</title>
<updated>2023-05-24T16:18:20+00:00</updated>
<author>
<name>jyn</name>
<email>jyn.nelson@redjack.com</email>
</author>
<published>2023-05-24T15:42:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=9314ed0cbd1cda2df6c14b7d657db9aceb1b39a5'/>
<id>urn:sha1:9314ed0cbd1cda2df6c14b7d657db9aceb1b39a5</id>
<content type='text'>
"only accepted on the nightly compiler" is misleading when this *is* nightly.
</content>
</entry>
<entry>
<title>Allow setting CFG_DISABLE_UNSTABLE_FEATURES to 0</title>
<updated>2023-01-12T10:36:04+00:00</updated>
<author>
<name>Collin Baker</name>
<email>collinbaker@chromium.org</email>
</author>
<published>2023-01-12T10:36:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=0a03d1c9cafde0ada19b4fab0f3d6892cb154fd8'/>
<id>urn:sha1:0a03d1c9cafde0ada19b4fab0f3d6892cb154fd8</id>
<content type='text'>
Two locations check whether this build-time environment variable is
defined. Allowing it to be explicitly disabled with a "0" value is
useful, especially for integrating with external build systems.
</content>
</entry>
<entry>
<title>Fix `uninlined_format_args` in libtest</title>
<updated>2022-12-19T07:58:40+00:00</updated>
<author>
<name>nils</name>
<email>48135649+Nilstrieb@users.noreply.github.com</email>
</author>
<published>2022-12-19T07:48:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=5fb2d63d0793a4c3c612d1e4a4ca6a184e6fe614'/>
<id>urn:sha1:5fb2d63d0793a4c3c612d1e4a4ca6a184e6fe614</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Create a hacky fail-fast mode that stops tests at the first failure</title>
<updated>2022-12-01T20:29:18+00:00</updated>
<author>
<name>Oli Scherer</name>
<email>git-spam-no-reply9815368754983@oli-obk.de</email>
</author>
<published>2022-12-01T19:58:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=e59025867da9032ecacc36987b207a8a1e531fee'/>
<id>urn:sha1:e59025867da9032ecacc36987b207a8a1e531fee</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add `IsTerminal` trait to determine if a descriptor or handle is a terminal</title>
<updated>2022-10-14T23:35:38+00:00</updated>
<author>
<name>Josh Triplett</name>
<email>josh@joshtriplett.org</email>
</author>
<published>2022-06-12T21:10:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=326ef470a8b379a180d6dc4bbef08990698a737a'/>
<id>urn:sha1:326ef470a8b379a180d6dc4bbef08990698a737a</id>
<content type='text'>
The UNIX and WASI implementations use `isatty`. The Windows
implementation uses the same logic the `atty` crate uses, including the
hack needed to detect msys terminals.

Implement this trait for `File` and for `Stdin`/`Stdout`/`Stderr` and
their locked counterparts on all platforms. On UNIX and WASI, implement
it for `BorrowedFd`/`OwnedFd`. On Windows, implement it for
`BorrowedHandle`/`OwnedHandle`.

Based on https://github.com/rust-lang/rust/pull/91121

Co-authored-by: Matt Wilkinson &lt;mattwilki17@gmail.com&gt;
</content>
</entry>
<entry>
<title>Fix binary name in help message for test binaries</title>
<updated>2022-07-09T22:52:37+00:00</updated>
<author>
<name>Smitty</name>
<email>me@smitop.com</email>
</author>
<published>2022-07-09T22:52:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=ed542df9bc798bbdfe4d18308b9a6528bebf0461'/>
<id>urn:sha1:ed542df9bc798bbdfe4d18308b9a6528bebf0461</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Use implicit capture syntax in format_args</title>
<updated>2022-03-10T15:23:40+00:00</updated>
<author>
<name>T-O-R-U-S</name>
<email>bageliq@protonmail.com</email>
</author>
<published>2022-02-12T19:16:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=72a25d05bf1a4b155d74139ef700ff93af6d8e22'/>
<id>urn:sha1:72a25d05bf1a4b155d74139ef700ff93af6d8e22</id>
<content type='text'>
This updates the standard library's documentation to use the new syntax. The
documentation is worthwhile to update as it should be more idiomatic
(particularly for features like this, which are nice for users to get acquainted
with). The general codebase is likely more hassle than benefit to update: it'll
hurt git blame, and generally updates can be done by folks updating the code if
(and when) that makes things more readable with the new format.

A few places in the compiler and library code are updated (mostly just due to
already having been done when this commit was first authored).
</content>
</entry>
<entry>
<title>Use `optflag` for `--report-time`</title>
<updated>2022-01-30T15:25:40+00:00</updated>
<author>
<name>Samuel E. Moelius III</name>
<email>sam@moeli.us</email>
</author>
<published>2022-01-30T15:25:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=96d96a7ac48cd8becf3133035ab0cf0717a4cf75'/>
<id>urn:sha1:96d96a7ac48cd8becf3133035ab0cf0717a4cf75</id>
<content type='text'>
Essentially, what is described here:
https://github.com/rust-lang/rust/issues/64888#issuecomment-1008047228

There is one difference. The comment proposes to add a
`--report-time-color` option. This change instead uses libtest's
existing `--color` option for that purpose.
</content>
</entry>
<entry>
<title>Check `allow_unstable` before checking environment variables</title>
<updated>2021-09-30T16:57:34+00:00</updated>
<author>
<name>Samuel E. Moelius III</name>
<email>sam@moeli.us</email>
</author>
<published>2021-09-30T16:57:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=32b6ac5b44e4f0ffa5e56b9c81407633dc4edb64'/>
<id>urn:sha1:32b6ac5b44e4f0ffa5e56b9c81407633dc4edb64</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Implement #85440</title>
<updated>2021-09-30T01:51:46+00:00</updated>
<author>
<name>Samuel E. Moelius III</name>
<email>sam@moeli.us</email>
</author>
<published>2021-09-18T22:10:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=fa23d4fe93020bfde8f45c7cad077117d999c3ed'/>
<id>urn:sha1:fa23d4fe93020bfde8f45c7cad077117d999c3ed</id>
<content type='text'>
</content>
</entry>
</feed>
