Add skipped counter to count for number of skipped testcases.
Signed-off-by: Ayuj Verma <ayve...@marvell.com>
Signed-off-by: Shally Verma <shal...@marvell.com>
---
app/test/test.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/app/test/test.c b/app/test/test.c
index d646f51..1e0113b 100644
--- a/app/test/test.c
+++ b/app/test/test.c
@@ -237,6 +237,8 @@
succeeded++;
else if (test_success == -ENOTSUP)
unsupported++;
+ else if (test_success == TEST_SKIPPED)
+ skipped++;
else
failed++;
} else if (test_success == -ENOTSUP) {
--
1.8.3.1