mirror of
https://github.com/rtic-rs/rtic.git
synced 2025-12-16 21:05:35 +01:00
More work on new spawn/executor
This commit is contained in:
parent
1eabb94f04
commit
cd790a9428
8 changed files with 43 additions and 108 deletions
|
|
@ -70,7 +70,15 @@ impl<'a> CargoCommand<'a> {
|
|||
features,
|
||||
mode,
|
||||
} => {
|
||||
let mut args = vec!["+nightly", self.name(), "--examples", "--target", target];
|
||||
let mut args = vec![
|
||||
"+nightly",
|
||||
self.name(),
|
||||
"--examples",
|
||||
"--target",
|
||||
target,
|
||||
"--features",
|
||||
"test-critical-section",
|
||||
];
|
||||
|
||||
if let Some(feature_name) = features {
|
||||
args.extend_from_slice(&["--features", feature_name]);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue