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:
parent
d0b9bd5935
commit
0ae86790b6
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue