From: Maxim Uvarov <maxim.uva...@linaro.org>

Pass args to cunit to make code commong with other tests.

Signed-off-by: Maxim Uvarov <maxim.uva...@linaro.org>
---
/** Email created from pull request 309 (muvarov:devel/master_shippable2)
 ** https://github.com/Linaro/odp/pull/309
 ** Patch: https://github.com/Linaro/odp/pull/309.patch
 ** Base sha: c15a810b7a47f2e07200f83aa534163ca06e2b16
 ** Merge commit sha: f67aef1c433b43a2cdad08eb808b9fbcb9797b0e
 **/
 platform/linux-generic/test/validation/api/shmem/shmem_odp1.c | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/platform/linux-generic/test/validation/api/shmem/shmem_odp1.c 
b/platform/linux-generic/test/validation/api/shmem/shmem_odp1.c
index 8cd89c8f7..d3b951ef7 100644
--- a/platform/linux-generic/test/validation/api/shmem/shmem_odp1.c
+++ b/platform/linux-generic/test/validation/api/shmem/shmem_odp1.c
@@ -76,9 +76,15 @@ odp_suiteinfo_t shmem_suites[] = {
        ODP_SUITE_INFO_NULL,
 };
 
-int main(void)
+int main(int argc, char *argv[])
 {
-       int ret = odp_cunit_register(shmem_suites);
+       int ret;
+
+       /* parse common options: */
+       if (odp_cunit_parse_options(argc, argv))
+               return -1;
+
+       ret = odp_cunit_register(shmem_suites);
 
        if (ret == 0)
                ret = odp_cunit_run();

Reply via email to