diff mbox

odp_init_test.c add new global init args

Message ID 1413219636-53911-1-git-send-email-mike.holmes@linaro.org
State Accepted
Commit b9fe36fed3c7f02068c7c75d0f49e381b2059b24
Headers show

Commit Message

Mike Holmes Oct. 13, 2014, 5 p.m. UTC
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(-)

Comments

Ciprian Barbu Oct. 14, 2014, 2:47 p.m. UTC | #1
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
Maxim Uvarov Oct. 15, 2014, 9:12 a.m. UTC | #2
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 mbox

Patch

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);
 }