Skip to content

Commit 96d96a7

Browse files
committed
Use optflag for --report-time
Essentially, what is described here: #64888 (comment) 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.
1 parent a00e130 commit 96d96a7

File tree

6 files changed

+9
-22
lines changed

6 files changed

+9
-22
lines changed

library/test/src/cli.rs

+3-11
Original file line numberDiff line numberDiff line change
@@ -109,12 +109,10 @@ fn optgroups() -> getopts::Options {
109109
unstable-options = Allow use of experimental features",
110110
"unstable-options",
111111
)
112-
.optflagopt(
112+
.optflag(
113113
"",
114114
"report-time",
115-
"Show execution time of each test. Available values:
116-
plain = do not colorize the execution time (default);
117-
colored = colorize output according to the `color` parameter value;
115+
"Show execution time of each test.
118116
119117
Threshold values for colorized output can be configured via
120118
`RUST_TEST_TIME_UNIT`, `RUST_TEST_TIME_INTEGRATION` and
@@ -125,7 +123,6 @@ fn optgroups() -> getopts::Options {
125123
is 0.5 seconds, and the critical time is 2 seconds.
126124
127125
Not available for --format=terse",
128-
"plain|colored",
129126
)
130127
.optflag(
131128
"",
@@ -319,17 +316,12 @@ fn get_time_options(
319316
allow_unstable: bool,
320317
) -> OptPartRes<Option<TestTimeOptions>> {
321318
let report_time = unstable_optflag!(matches, allow_unstable, "report-time");
322-
let colored_opt_str = matches.opt_str("report-time");
323-
let mut report_time_colored = report_time && colored_opt_str == Some("colored".into());
324319
let ensure_test_time = unstable_optflag!(matches, allow_unstable, "ensure-time");
325320

326321
// If `ensure-test-time` option is provided, time output is enforced,
327322
// so user won't be confused if any of tests will silently fail.
328323
let options = if report_time || ensure_test_time {
329-
if ensure_test_time && !report_time {
330-
report_time_colored = true;
331-
}
332-
Some(TestTimeOptions::new_from_env(ensure_test_time, report_time_colored))
324+
Some(TestTimeOptions::new_from_env(ensure_test_time))
333325
} else {
334326
None
335327
};

library/test/src/formatters/pretty.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ impl<T: Write> PrettyFormatter<T> {
102102
if let (Some(opts), Some(time)) = (self.time_options, exec_time) {
103103
let time_str = format!(" <{}>", time);
104104

105-
let color = if opts.colored {
105+
let color = if self.use_color {
106106
if opts.is_critical(desc, time) {
107107
Some(term::color::RED)
108108
} else if opts.is_warn(desc, time) {

library/test/src/tests.rs

-1
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,6 @@ fn test_time_options_threshold() {
382382

383383
let options = TestTimeOptions {
384384
error_on_excess: false,
385-
colored: false,
386385
unit_threshold: unit.clone(),
387386
integration_threshold: integration.clone(),
388387
doctest_threshold: doc.clone(),

library/test/src/time.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -137,14 +137,13 @@ pub struct TestTimeOptions {
137137
/// Denotes if the test critical execution time limit excess should be considered
138138
/// a test failure.
139139
pub error_on_excess: bool,
140-
pub colored: bool,
141140
pub unit_threshold: TimeThreshold,
142141
pub integration_threshold: TimeThreshold,
143142
pub doctest_threshold: TimeThreshold,
144143
}
145144

146145
impl TestTimeOptions {
147-
pub fn new_from_env(error_on_excess: bool, colored: bool) -> Self {
146+
pub fn new_from_env(error_on_excess: bool) -> Self {
148147
let unit_threshold = TimeThreshold::from_env_var(time_constants::UNIT_ENV_NAME)
149148
.unwrap_or_else(Self::default_unit);
150149

@@ -155,7 +154,7 @@ impl TestTimeOptions {
155154
let doctest_threshold = TimeThreshold::from_env_var(time_constants::DOCTEST_ENV_NAME)
156155
.unwrap_or_else(Self::default_doctest);
157156

158-
Self { error_on_excess, colored, unit_threshold, integration_threshold, doctest_threshold }
157+
Self { error_on_excess, unit_threshold, integration_threshold, doctest_threshold }
159158
}
160159

161160
pub fn is_warn(&self, test: &TestDesc, exec_time: &TestExecTime) -> bool {

src/doc/rustc/src/tests/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ Controls the format of the output. Valid options:
267267

268268
Writes the results of the tests to the given file.
269269

270-
#### `--report-time` _FORMAT_
270+
#### `--report-time`
271271

272272
⚠️ 🚧 This option is [unstable](#unstable-options), and requires the `-Z
273273
unstable-options` flag. See [tracking issue

src/doc/unstable-book/src/compiler-flags/report-time.md

+2-5
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,8 @@ Sample usage command:
2121
Available options:
2222

2323
```sh
24-
--report-time [plain|colored]
25-
Show execution time of each test. Available values:
26-
plain = do not colorize the execution time (default);
27-
colored = colorize output according to the `color`
28-
parameter value;
24+
--report-time
25+
Show execution time of each test.
2926
Threshold values for colorized output can be
3027
configured via
3128
`RUST_TEST_TIME_UNIT`, `RUST_TEST_TIME_INTEGRATION`

0 commit comments

Comments
 (0)