Message ID | 1413219636-53911-1-git-send-email-mike.holmes@linaro.org |
---|---|
State | Accepted |
Commit | b9fe36fed3c7f02068c7c75d0f49e381b2059b24 |
Headers | show |
On Mon, Oct 13, 2014 at 8:00 PM, Mike Holmes <mike.holmes@linaro.org> wrote: > Update this test to compile with the new global_init arguments > > Signed-off-by: Mike Holmes <mike.holmes@linaro.org> Reviewed-and-Tested-by: Ciprian Barbu <ciprian.barbu@linaro.org> > --- > > test/cunit/odp_init_test.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/test/cunit/odp_init_test.c b/test/cunit/odp_init_test.c > index fe5e6bc..4ca1e2c 100644 > --- a/test/cunit/odp_init_test.c > +++ b/test/cunit/odp_init_test.c > @@ -13,7 +13,7 @@ > static void test_odp_init_global(void) > { > int status; > - status = odp_init_global(); > + status = odp_init_global(NULL, NULL); > CU_ASSERT(status == 0); > } > > -- > 1.9.1 > > > _______________________________________________ > lng-odp mailing list > lng-odp@lists.linaro.org > http://lists.linaro.org/mailman/listinfo/lng-odp
Merged, thanks, Maxim. On 10/13/2014 09:00 PM, Mike Holmes wrote: > Update this test to compile with the new global_init arguments > > Signed-off-by: Mike Holmes <mike.holmes@linaro.org> > --- > > test/cunit/odp_init_test.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/test/cunit/odp_init_test.c b/test/cunit/odp_init_test.c > index fe5e6bc..4ca1e2c 100644 > --- a/test/cunit/odp_init_test.c > +++ b/test/cunit/odp_init_test.c > @@ -13,7 +13,7 @@ > static void test_odp_init_global(void) > { > int status; > - status = odp_init_global(); > + status = odp_init_global(NULL, NULL); > CU_ASSERT(status == 0); > } >
diff --git a/test/cunit/odp_init_test.c b/test/cunit/odp_init_test.c index fe5e6bc..4ca1e2c 100644 --- a/test/cunit/odp_init_test.c +++ b/test/cunit/odp_init_test.c @@ -13,7 +13,7 @@ static void test_odp_init_global(void) { int status; - status = odp_init_global(); + status = odp_init_global(NULL, NULL); CU_ASSERT(status == 0); }
Update this test to compile with the new global_init arguments Signed-off-by: Mike Holmes <mike.holmes@linaro.org> --- test/cunit/odp_init_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)