examples: Collects coverage info in component

This commit is contained in:
Alexey Gerenkov
2019-10-01 13:16:43 +03:00
parent eca812249b
commit 02e084e2b5
6 changed files with 65 additions and 26 deletions

View File

@@ -0,0 +1,10 @@
#include <stdio.h>
void some_dummy_func(void)
{
static int i;
printf("some_dummy_func: Counter = %d\n", i++);
i++;
}