You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Auto merge of #126197 - jieyouxu:rmake-must-use, r=<try>
run-make: annotate library with `#[must_use]` and enforce `unused_must_use` in rmake.rs
Commits up to 706abf6 are from #125752.
This PR adds `#[must_use]` annotations to functions of the `run_make_support` library where it makes sense, and adjusts compiletest to compile rmake.rs with `-Dunused_must_use`.
The rationale is that it's highly likely that unused `#[must_use]` values in rmake.rs test files are bugs. For example, unused fs/io results are often crucial to the correctness of the test and often unchecked fs/io results allow the test to silently pass where it would've failed if the result was checked.
try-job: test-various
try-job: x86_64-msvc
All notable changes to the `run_make_support` library should be documented in this file.
4
+
5
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and the support
6
+
library should adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) even if it's
7
+
not intended for public consumption (it's moreso to help internally, to help test writers track
8
+
changes to the support library).
9
+
10
+
This support library will probably never reach 1.0. Please bump the minor version in `Cargo.toml` if
11
+
you make any breaking changes or other significant changes, or bump the patch version for bug fixes.
12
+
13
+
## [0.2.0] - 2024-06-09
14
+
15
+
### Changed
16
+
17
+
- Marked many functions with `#[must_use]`, and rmake.rs are now compiled with `-Dmust_use`.
18
+
19
+
## [0.1.0] - 2024-06-09
20
+
21
+
### Changed
22
+
23
+
- Use *drop bombs* to enforce that commands are executed; a command invocation will panic if it is
24
+
constructed but never executed. Execution methods `Command::{run, run_fail}` will defuse the drop
25
+
bomb.
26
+
- Added `Command` helpers that forward to `std::process::Command` counterparts.
27
+
28
+
### Removed
29
+
30
+
- The `env_var` method which was incorrectly named and is `env_clear` underneath and is a footgun
31
+
from `impl_common_helpers`. For example, removing `TMPDIR` on Unix and `TMP`/`TEMP` breaks
32
+
`std::env::temp_dir` and wrecks anything using that, such as rustc's codgen.
33
+
- Removed `Deref`/`DerefMut` for `run_make_support::Command` -> `std::process::Command` because it
34
+
causes a method chain like `htmldocck().arg().run()` to fail, because `arg()` resolves to
35
+
`std::process::Command` which also returns a `&mut std::process::Command`, causing the `run()` to
36
+
be not found.
37
+
38
+
## [0.0.0] - 2024-06-09
39
+
40
+
Consider this version to contain all changes made to the support library before we started to track
41
+
changes in this changelog.
42
+
43
+
### Added
44
+
45
+
- Custom command wrappers around `std::process::Command` (`run_make_support::Command`) and custom
46
+
wrapper around `std::process::Output` (`CompletedProcess`) to make it more convenient to work with
47
+
commands and their output, and help avoid forgetting to check for exit status.
0 commit comments