diff options
author | 2023-01-09 21:02:53 +0100 | |
---|---|---|
committer | 2023-03-01 00:33:29 +0100 | |
commit | cd790a94286cdc307d399b7f7a43e305e90de5bf (patch) | |
tree | 5a83dd0739c90fb848744c22bcbe689eed1f1fcf /xtask/src/command.rs | |
parent | 1eabb94f0424d7ff85786ad05615da69a379f01d (diff) | |
download | rtic-cd790a94286cdc307d399b7f7a43e305e90de5bf.tar.gz rtic-cd790a94286cdc307d399b7f7a43e305e90de5bf.tar.zst rtic-cd790a94286cdc307d399b7f7a43e305e90de5bf.zip |
More work on new spawn/executor
Diffstat (limited to 'xtask/src/command.rs')
-rw-r--r-- | xtask/src/command.rs | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/xtask/src/command.rs b/xtask/src/command.rs index 418f440c..4e903691 100644 --- a/xtask/src/command.rs +++ b/xtask/src/command.rs @@ -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]); |