From e5fd202d8bb8388bcb733abe35dac83abf9b973e Mon Sep 17 00:00:00 2001 From: Christophe Favergeon Date: Tue, 28 Apr 2020 10:39:58 +0200 Subject: [PATCH] CMSIS-DSP: Improvement to test framework to run on some models. --- Testing/FrameworkSource/FPGA.cpp | 6 +++--- Testing/testmain.cpp | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Testing/FrameworkSource/FPGA.cpp b/Testing/FrameworkSource/FPGA.cpp index 52d4412d..743341fe 100644 --- a/Testing/FrameworkSource/FPGA.cpp +++ b/Testing/FrameworkSource/FPGA.cpp @@ -204,7 +204,7 @@ namespace Client switch(kind) { case 1: - printf("S: t \n"); + printf("S: t %s\n",""); break; case 2: printf("S: s %ld\n",this->currentId); @@ -213,7 +213,7 @@ namespace Client printf("S: g %ld\n",this->currentId); break; default: - printf("S: u\n"); + printf("S: u%s\n",""); } @@ -281,7 +281,7 @@ namespace Client void FPGA::EndGroup() { - printf("S: p\n"); + printf("S: p%s\n",""); this->path->pop_back(); } diff --git a/Testing/testmain.cpp b/Testing/testmain.cpp index afcc729e..a7ff79c4 100644 --- a/Testing/testmain.cpp +++ b/Testing/testmain.cpp @@ -52,8 +52,8 @@ int testmain() // An IO runner is driven by some IO // In future one may have a client/server runner driven // by a server running on a host. - Client::IORunner runner(&io,&mgr,Testing::kTestAndDump); - //Client::IORunner runner(&io,&mgr,Testing::kTestOnly); + //Client::IORunner runner(&io,&mgr,Testing::kTestAndDump); + Client::IORunner runner(&io,&mgr,Testing::kTestOnly); // Root object containing all the tests