summaryrefslogtreecommitdiff
path: root/cli/tools
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tools')
-rw-r--r--cli/tools/bench.rs3
-rw-r--r--cli/tools/test.rs3
2 files changed, 4 insertions, 2 deletions
diff --git a/cli/tools/bench.rs b/cli/tools/bench.rs
index 3d52e4226..ccff3d615 100644
--- a/cli/tools/bench.rs
+++ b/cli/tools/bench.rs
@@ -362,7 +362,8 @@ async fn bench_specifier(
ps.options.unstable(),
)],
Default::default(),
- );
+ )
+ .await?;
worker.run_bench_specifier().await
}
diff --git a/cli/tools/test.rs b/cli/tools/test.rs
index da44eba7c..265b39b57 100644
--- a/cli/tools/test.rs
+++ b/cli/tools/test.rs
@@ -723,7 +723,8 @@ async fn test_specifier(
stdout: StdioPipe::File(sender.stdout()),
stderr: StdioPipe::File(sender.stderr()),
},
- );
+ )
+ .await?;
worker.run_test_specifier(mode).await
}