aboutsummaryrefslogtreecommitdiff
path: root/test/validation/pool/pool.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/validation/pool/pool.c')
-rw-r--r--test/validation/pool/pool.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/validation/pool/pool.c b/test/validation/pool/pool.c
index 3de2714..bca210a 100644
--- a/test/validation/pool/pool.c
+++ b/test/validation/pool/pool.c
@@ -116,5 +116,10 @@ odp_suiteinfo_t pool_suites[] = {
int pool_main(void)
{
- return odp_cunit_run(pool_suites);
+ int ret = odp_cunit_register(pool_suites);
+
+ if (ret == 0)
+ ret = odp_cunit_run();
+
+ return ret;
}