Skip to content

Commit 957a6ad

Browse files
authored
Rollup merge of #110644 - pietroalbini:pa-json-formatting-tests, r=Mark-Simulacrum
Update tests for libtest `--format json` This PR makes the test work on beta and stable, and adds a test ensuring the option is not available on beta and stable. Backported these commits from #110414.
2 parents 825bc60 + dc94522 commit 957a6ad

File tree

7 files changed

+60
-8
lines changed

7 files changed

+60
-8
lines changed

src/tools/compiletest/src/header.rs

+11
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,9 @@ pub struct TestProps {
9090
pub unset_rustc_env: Vec<String>,
9191
// Environment settings to use during execution
9292
pub exec_env: Vec<(String, String)>,
93+
// Environment variables to unset prior to execution.
94+
// Variables are unset before applying 'exec_env'
95+
pub unset_exec_env: Vec<String>,
9396
// Build documentation for all specified aux-builds as well
9497
pub build_aux_docs: bool,
9598
// Flag to force a crate to be built with the host architecture
@@ -198,6 +201,7 @@ mod directives {
198201
pub const AUX_CRATE: &'static str = "aux-crate";
199202
pub const EXEC_ENV: &'static str = "exec-env";
200203
pub const RUSTC_ENV: &'static str = "rustc-env";
204+
pub const UNSET_EXEC_ENV: &'static str = "unset-exec-env";
201205
pub const UNSET_RUSTC_ENV: &'static str = "unset-rustc-env";
202206
pub const FORBID_OUTPUT: &'static str = "forbid-output";
203207
pub const CHECK_TEST_LINE_NUMBERS_MATCH: &'static str = "check-test-line-numbers-match";
@@ -231,6 +235,7 @@ impl TestProps {
231235
rustc_env: vec![],
232236
unset_rustc_env: vec![],
233237
exec_env: vec![],
238+
unset_exec_env: vec![],
234239
build_aux_docs: false,
235240
force_host: false,
236241
check_stdout: false,
@@ -382,6 +387,12 @@ impl TestProps {
382387
&mut self.exec_env,
383388
Config::parse_env,
384389
);
390+
config.push_name_value_directive(
391+
ln,
392+
UNSET_EXEC_ENV,
393+
&mut self.unset_exec_env,
394+
|r| r,
395+
);
385396
config.push_name_value_directive(
386397
ln,
387398
RUSTC_ENV,

src/tools/compiletest/src/header/cfg.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -165,11 +165,15 @@ pub(super) fn parse_cfg_name_directive<'a>(
165165
message: "when the architecture is part of the Thumb family"
166166
}
167167

168+
// Technically the locally built compiler uses the "dev" channel rather than the "nightly"
169+
// channel, even though most people don't know or won't care about it. To avoid confusion, we
170+
// treat the "dev" channel as the "nightly" channel when processing the directive.
168171
condition! {
169-
name: &config.channel,
172+
name: if config.channel == "dev" { "nightly" } else { &config.channel },
170173
allowed_names: &["stable", "beta", "nightly"],
171174
message: "when the release channel is {name}",
172175
}
176+
173177
condition! {
174178
name: "cross-compile",
175179
condition: config.target != config.host,

src/tools/compiletest/src/runtest.rs

+21-4
Original file line numberDiff line numberDiff line change
@@ -1614,8 +1614,13 @@ impl<'test> TestCx<'test> {
16141614
test_client
16151615
.args(&["run", &support_libs.len().to_string(), &prog])
16161616
.args(support_libs)
1617-
.args(args)
1618-
.envs(env.clone());
1617+
.args(args);
1618+
1619+
for key in &self.props.unset_exec_env {
1620+
test_client.env_remove(key);
1621+
}
1622+
test_client.envs(env.clone());
1623+
16191624
self.compose_and_run(
16201625
test_client,
16211626
self.config.run_lib_path.to_str().unwrap(),
@@ -1627,7 +1632,13 @@ impl<'test> TestCx<'test> {
16271632
let aux_dir = self.aux_output_dir_name();
16281633
let ProcArgs { prog, args } = self.make_run_args();
16291634
let mut wr_run = Command::new("wr-run");
1630-
wr_run.args(&[&prog]).args(args).envs(env.clone());
1635+
wr_run.args(&[&prog]).args(args);
1636+
1637+
for key in &self.props.unset_exec_env {
1638+
wr_run.env_remove(key);
1639+
}
1640+
wr_run.envs(env.clone());
1641+
16311642
self.compose_and_run(
16321643
wr_run,
16331644
self.config.run_lib_path.to_str().unwrap(),
@@ -1639,7 +1650,13 @@ impl<'test> TestCx<'test> {
16391650
let aux_dir = self.aux_output_dir_name();
16401651
let ProcArgs { prog, args } = self.make_run_args();
16411652
let mut program = Command::new(&prog);
1642-
program.args(args).current_dir(&self.output_base_dir()).envs(env.clone());
1653+
program.args(args).current_dir(&self.output_base_dir());
1654+
1655+
for key in &self.props.unset_exec_env {
1656+
program.env_remove(key);
1657+
}
1658+
program.envs(env.clone());
1659+
16431660
self.compose_and_run(
16441661
program,
16451662
self.config.run_lib_path.to_str().unwrap(),
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// no-prefer-dynamic
2+
// compile-flags: --test
3+
// run-flags: --list --format json -Zunstable-options
4+
// run-fail
5+
// check-run-results
6+
// ignore-nightly
7+
// unset-exec-env:RUSTC_BOOTSTRAP
8+
9+
#![cfg(test)]
10+
#[test]
11+
fn m_test() {}
12+
13+
#[test]
14+
#[ignore = "not yet implemented"]
15+
fn z_test() {}
16+
17+
#[test]
18+
fn a_test() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
error: the option `Z` is only accepted on the nightly compiler

tests/ui/test-attrs/tests-listing-format-json.rs

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
// run-flags: --list --format json -Zunstable-options
44
// run-pass
55
// check-run-results
6+
// only-nightly
67
// normalize-stdout-test: "fake-test-src-base/test-attrs/" -> "$$DIR/"
78
// normalize-stdout-test: "fake-test-src-base\\test-attrs\\" -> "$$DIR/"
89

Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{ "type": "suite", "event": "discovery" }
2-
{ "type": "test", "event": "discovered", "name": "a_test", "ignore": false, "ignore_message": "", "source_path": "$DIR/tests-listing-format-json.rs", "start_line": 20, "start_col": 4, "end_line": 20, "end_col": 10 }
3-
{ "type": "test", "event": "discovered", "name": "m_test", "ignore": false, "ignore_message": "", "source_path": "$DIR/tests-listing-format-json.rs", "start_line": 13, "start_col": 4, "end_line": 13, "end_col": 10 }
4-
{ "type": "test", "event": "discovered", "name": "z_test", "ignore": true, "ignore_message": "not yet implemented", "source_path": "$DIR/tests-listing-format-json.rs", "start_line": 17, "start_col": 4, "end_line": 17, "end_col": 10 }
2+
{ "type": "test", "event": "discovered", "name": "a_test", "ignore": false, "ignore_message": "", "source_path": "$DIR/tests-listing-format-json.rs", "start_line": 21, "start_col": 4, "end_line": 21, "end_col": 10 }
3+
{ "type": "test", "event": "discovered", "name": "m_test", "ignore": false, "ignore_message": "", "source_path": "$DIR/tests-listing-format-json.rs", "start_line": 14, "start_col": 4, "end_line": 14, "end_col": 10 }
4+
{ "type": "test", "event": "discovered", "name": "z_test", "ignore": true, "ignore_message": "not yet implemented", "source_path": "$DIR/tests-listing-format-json.rs", "start_line": 18, "start_col": 4, "end_line": 18, "end_col": 10 }
55
{ "type": "suite", "event": "completed", "tests": 3, "benchmarks": 0, "total": 3, "ignored": 1 }

0 commit comments

Comments
 (0)