Skip to content

Commit c94dc77

Browse files
authored
Merge pull request #896 from robamu/svd2rust-regress-fixes
Svd2rust regress fixes
2 parents 07406a8 + f08aadf commit c94dc77

File tree

5 files changed

+22
-51
lines changed

5 files changed

+22
-51
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
1010
- Force using rust edition 2021 in CI
1111
- Added lifetime ellision for `FieldWriter` where the explicit lifetimes are not necessary, which
1212
fixes the `clippy::needless_lifetimes` warning on rustc 1.84
13+
- Some fixes for the `svd2rust-regress` tool and update of its documentation
1314

1415
## [v0.35.0] - 2024-11-12
1516

ci/svd2rust-regress/README.md

+6-43
Original file line numberDiff line numberDiff line change
@@ -40,36 +40,11 @@ If all test cases passed, the return code will be `0`. If any test cases failed,
4040

4141
### Options
4242

43-
Here are the options for running `svd2rust-regress`:
44-
43+
You can display options for `svd2rust-regress` by running:
4544

4645
```text
47-
svd2rust-regress 0.1.0
48-
James Munns <[email protected]>:The svd2rust developers
49-
50-
USAGE:
51-
svd2rust-regress [FLAGS] [OPTIONS]
52-
53-
FLAGS:
54-
-b, --bad-tests Include tests expected to fail (will cause a non-zero return code)
55-
-f, --format Enable formatting with `rustfmt`
56-
-h, --help Prints help information
57-
-l, --long-test Run a long test (it's very long)
58-
-V, --version Prints version information
59-
-v, --verbose Use verbose output
60-
61-
OPTIONS:
62-
-a, --architecture <arch>
63-
Filter by architecture, case sensitive, may be combined with other filters Options are: "CortexM", "RiscV", "Msp430", "Mips" and "XtensaLX"
64-
-p, --svd2rust-path <bin_path>
65-
Path to an `svd2rust` binary, relative or absolute. Defaults to `target/release/svd2rust[.exe]` of this
66-
repository (which must be already built)
67-
-c, --chip <chip> Filter by chip name, case sensitive, may be combined with other filters
68-
-m, --manufacturer <mfgr>
69-
Filter by manufacturer, case sensitive, may be combined with other filters
70-
71-
--rustfmt_bin_path <rustfmt_bin_path>
72-
Path to an `rustfmt` binary, relative or absolute. Defaults to `$(rustup which rustfmt)`
46+
# in the ci/svd2rust-regress folder
47+
cargo regress help
7348
```
7449

7550
### Filters
@@ -80,28 +55,16 @@ For example, to run all `RiscV` tests:
8055

8156
```bash
8257
# in the ci/svd2rust-regress folder
83-
cargo run --release -- -a RiscV
84-
Finished release [optimized] target(s) in 0.0 secs
85-
Running `target/release/svd2rust-regress -a RiscV`
86-
Passed: si_five_e310x - 7 seconds
58+
cargo regress tests --architecture riscv
8759
```
8860

8961
To run against any chip named `MB9AF12xK`:
9062

9163
```bash
92-
cargo run --release -- --long-test -c MB9AF12xK
93-
Finished release [optimized] target(s) in 0.0 secs
94-
Running `target/release/svd2rust-regress --long-test -c MB9AF12xK`
95-
Passed: spansion_mb9af12x_k - 23 seconds
96-
Passed: fujitsu_mb9af12x_k - 25 seconds
64+
cargo regress test -c MB9AF12xK
9765
```
9866

9967
To run against specifically the `Fujitsu` `MB9AF12xK`:
10068
```bash
101-
cargo run --release -- --long-test -c MB9AF12xK -m Fujitsu
102-
Finished release [optimized] target(s) in 0.0 secs
103-
Running `target/release/svd2rust-regress --long-test -c MB9AF12xK -m Fujitsu`
104-
Passed: fujitsu_mb9af12x_k - 19 seconds
69+
cargo regress test -c MB9AF12xK -m Fujitsu
10570
```
106-
107-
Note that you may have to pass `--long-test` to enable some chips as they are known to take a long time to compile.

ci/svd2rust-regress/src/diff.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -257,8 +257,8 @@ impl Diffing {
257257
Ok([baseline, current])
258258
}
259259

260-
fn get_source_and_command<'s>(&'s self) -> [Option<(Source, Command)>; 2] {
261-
let split = |s: &'s str| -> (Source, Command) {
260+
fn get_source_and_command(&self) -> [Option<(Source, Command)>; 2] {
261+
fn split(s: &str) -> (Source, Command) {
262262
if let Some(s) = s.strip_prefix('@') {
263263
if let Some((source, cmd)) = s.split_once(' ') {
264264
(Some(source), Some(cmd.trim()))
@@ -268,7 +268,7 @@ impl Diffing {
268268
} else {
269269
(None, Some(s.trim()))
270270
}
271-
};
271+
}
272272

273273
let baseline = self.baseline.as_deref().map(split);
274274

ci/svd2rust-regress/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ pub struct Test {
138138
#[arg(long = "svd", group = "svd_source")]
139139
/// Path to SVD file to test
140140
pub svd_file: Option<PathBuf>,
141-
#[arg(long, group = "svd_source")]
141+
#[arg(short = 'c', long, group = "svd_source")]
142142
/// Chip to use, use `--url` or `--svd-file` for another way to specify svd
143143
pub chip: Option<String>,
144144

ci/svd2rust-regress/src/svd_test.rs

+11-4
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,22 @@ use std::{
1111
path::Path,
1212
};
1313

14-
const CRATES_ALL: &[&str] = &["critical-section = \"1.0\"", "vcell = \"0.1.2\""];
14+
const CRATES_ALL: &[&str] = &[
15+
"critical-section = {version = \"1.0\", optional = true}",
16+
"vcell = \"0.1.2\"",
17+
];
1518
const CRATES_MSP430: &[&str] = &["msp430 = \"0.4.0\"", "msp430-rt = \"0.4.0\""];
1619
const CRATES_ATOMICS: &[&str] =
1720
&["portable-atomic = { version = \"0.3.16\", default-features = false }"];
18-
const CRATES_CORTEX_M: &[&str] = &["cortex-m = \"0.7.6\"", "cortex-m-rt = \"0.6.13\""];
21+
const CRATES_CORTEX_M: &[&str] = &["cortex-m = \"0.7.6\"", "cortex-m-rt = \"0.7\""];
1922
const CRATES_RISCV: &[&str] = &["riscv = \"0.12.1\"", "riscv-rt = \"0.13.0\""];
2023
const CRATES_XTENSALX: &[&str] = &["xtensa-lx-rt = \"0.9.0\"", "xtensa-lx = \"0.6.0\""];
2124
const CRATES_MIPS: &[&str] = &["mips-mcu = \"0.1.0\""];
2225
const PROFILE_ALL: &[&str] = &["[profile.dev]", "incremental = false"];
2326
const FEATURES_ALL: &[&str] = &["[features]"];
27+
const FEATURES_CORTEX_M: &[&str] = &["rt = [\"cortex-m-rt/device\"]"];
2428
const FEATURES_XTENSALX: &[&str] = &["default = [\"xtensa-lx/esp32\", \"xtensa-lx-rt/esp32\"]"];
29+
const WORKSPACE_EXCLUDE: &[&str] = &["[workspace]"];
2530

2631
fn path_helper_base(base: &Path, input: &[&str]) -> PathBuf {
2732
input
@@ -210,10 +215,10 @@ impl TestCase {
210215

211216
let svd_toml = path_helper_base(&chip_dir, &["Cargo.toml"]);
212217
let mut file = OpenOptions::new()
213-
.write(true)
214218
.append(true)
215219
.open(svd_toml)
216220
.with_context(|| "Failed to open Cargo.toml for appending")?;
221+
217222
let crates = CRATES_ALL
218223
.iter()
219224
.chain(match &self.arch {
@@ -233,8 +238,10 @@ impl TestCase {
233238
.chain(FEATURES_ALL.iter())
234239
.chain(match &self.arch {
235240
Target::XtensaLX => FEATURES_XTENSALX.iter(),
241+
Target::CortexM => FEATURES_CORTEX_M.iter(),
236242
_ => [].iter(),
237-
});
243+
})
244+
.chain(WORKSPACE_EXCLUDE.iter());
238245
for c in crates {
239246
writeln!(file, "{}", c).with_context(|| "Failed to append to file!")?;
240247
}

0 commit comments

Comments
 (0)