From a0c83764dab7e9ab1634f01cf8fb77f57b2ea78e Mon Sep 17 00:00:00 2001 From: Rico Tzschichholz Date: Thu, 9 Aug 2018 10:27:24 +0200 Subject: [PATCH] tests: No, really, stacked arrays are not supported --- valadoc/tests/drivers/api-test.data.vapi | 4 ++-- valadoc/tests/drivers/generic-api-test.vala | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/valadoc/tests/drivers/api-test.data.vapi b/valadoc/tests/drivers/api-test.data.vapi index f0b27ac5b..e5386f236 100644 --- a/valadoc/tests/drivers/api-test.data.vapi +++ b/valadoc/tests/drivers/api-test.data.vapi @@ -107,7 +107,7 @@ namespace ParamTest { public void test_function_param_12 (int[] a); public void test_function_param_13 (int[,,] a); - public void test_function_param_14 (int[][] a); + //public void test_function_param_14 (int[][] a); } @@ -122,7 +122,7 @@ namespace ReturnTest { public int[] test_function_7 (); public int[,,] test_function_8 (); - public int[][] test_function_9 (); + //public int[][] test_function_9 (); } diff --git a/valadoc/tests/drivers/generic-api-test.vala b/valadoc/tests/drivers/generic-api-test.vala index b073fa611..ef8ad28b1 100644 --- a/valadoc/tests/drivers/generic-api-test.vala +++ b/valadoc/tests/drivers/generic-api-test.vala @@ -2299,7 +2299,7 @@ public static void param_test (Api.Namespace ns, Api.Package pkg) { assert (func11 == true); assert (func12 == true); assert (func13 == true); - assert (func14 == true); + //assert (func14 == true); Api.NodeType[] forbidden = { @@ -2529,7 +2529,7 @@ public static void return_test (Api.Namespace ns, Api.Package pkg) { assert (func6 == true); assert (func7 == true); assert (func8 == true); - assert (func9 == true); + //assert (func9 == true); } -- 2.11.4.GIT