CMSIS-DSP: Improvement to test framework to run on some models.

pull/19/head
Christophe Favergeon 6 years ago
parent 2653dba272
commit e5fd202d8b

@ -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();
}

@ -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

Loading…
Cancel
Save