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