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: Fix test case numbering

Signed-off-by: Steffen Vogel <post@steffenvogel.de>
This commit is contained in:
Steffen Vogel 2024-05-23 19:20:14 +02:00 committed by pipeacosta
parent d0b9bd5935
commit 0ae86790b6

View file

@ -23,7 +23,7 @@ using namespace villas::utils;
int TestRTT::Case::start() {
node->logger->info(
"Starting case #{}/{}: filename={}, rate={}, values={}, limit={}", id,
"Starting case #{}/{}: filename={}, rate={}, values={}, limit={}", id+1,
node->cases.size(), filename_formatted, rate, values, limit);
// Open file
@ -47,7 +47,7 @@ int TestRTT::Case::stop() {
if (ret)
throw SystemError("Failed to close file");
node->logger->info("Stopping case #{}/{}", id, node->cases.size());
node->logger->info("Stopping case #{}/{}", id+1, node->cases.size());
return 0;
}