From 3b558cb753c2ab7bdce53b48bdb8456fc1164766 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Tue, 9 Apr 2024 11:18:36 +0200 Subject: [PATCH] test_rtt: Show test process Signed-off-by: Steffen Vogel --- lib/nodes/test_rtt.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/nodes/test_rtt.cpp b/lib/nodes/test_rtt.cpp index 551ed6650..3325955f0 100644 --- a/lib/nodes/test_rtt.cpp +++ b/lib/nodes/test_rtt.cpp @@ -29,8 +29,8 @@ static int test_rtt_case_start(NodeCompat *n, int id) { struct test_rtt_case *c = (struct test_rtt_case *)list_at(&t->cases, id); n->logger->info( - "Starting case #{}: filename={}, rate={}, values={}, limit={}", - t->current, c->filename_formatted, c->rate, c->values, c->limit); + "Starting case #{}/{}: filename={}, rate={}, values={}, limit={}", + t->current, list_length(&t->cases), c->filename_formatted, c->rate, c->values, c->limit); // Open file t->stream = fopen(c->filename_formatted, "a+");