summaryrefslogtreecommitdiff
path: root/instrumentation/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'instrumentation/src/main.rs')
-rw-r--r--instrumentation/src/main.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/instrumentation/src/main.rs b/instrumentation/src/main.rs
index 5990c12..f196d7d 100644
--- a/instrumentation/src/main.rs
+++ b/instrumentation/src/main.rs
@@ -87,11 +87,11 @@ pub fn main() {
build_bin(&p, name, Some("fail"), &format!("{name}-fail"));
}
p.finish_and_clear();
-
+
// Run tests
let m = MultiProgress::new();
let start_style =
- &ProgressStyle::with_template("{prefix:.magenta} {elapsed:.dim}").unwrap();
+ &ProgressStyle::with_template("{prefix:.magenta} {msg} {elapsed:.dim}").unwrap();
let ok_style =
&ProgressStyle::with_template("{prefix:.magenta} {msg:.green} {elapsed:.dim}")
.unwrap();
@@ -110,6 +110,7 @@ pub fn main() {
let pb = m.add(ProgressBar::new_spinner());
pb.set_style(start_style.clone());
pb.set_prefix(*name);
+ pb.set_message("RUN");
pb.enable_steady_tick(Duration::from_millis(1000));
let join = s.spawn(move || {
let start = Instant::now();