Maker Pro
Maker Pro

Path coverage using C compiled by the Keil Compiler

P

PatrioticPilgrim

Jan 1, 1970
0
I'm searching for anyone with experience using the Keil debugger to
ascertain code coverage. And I don't mean, simply static analysis. I
want to find out with each test program I run, what the paths were and
what percentage of the total paths through the software I've
traversed. I also don't mean all the ~Infinity permutations, just
want to know if I hit every piece of code at least once.
Thanks
 
M

Martin Riddle

Jan 1, 1970
0
I believe the D51 simulator offers that feature.

Cheers
 
S

Spehro Pefhany

Jan 1, 1970
0
I'm searching for anyone with experience using the Keil debugger to
ascertain code coverage. And I don't mean, simply static analysis. I
want to find out with each test program I run, what the paths were and
what percentage of the total paths through the software I've
traversed. I also don't mean all the ~Infinity permutations, just
want to know if I hit every piece of code at least once.
Thanks

The debugger colors the statements that were executed at least once.
You can tell by inspection...
 
Top