1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

test_rtt: Show test process

Signed-off-by: Steffen Vogel <post@steffenvogel.de>
This commit is contained in:
Steffen Vogel 2024-04-09 11:18:36 +02:00
parent f3b8fbeb85
commit 3b558cb753

View file

@ -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+");