From: Rico Tzschichholz Date: Thu, 9 Aug 2018 08:27:24 +0000 (+0200) Subject: tests: No, really, stacked arrays are not supported X-Git-Tag: 0.41.91~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a0c83764dab7e9ab1634f01cf8fb77f57b2ea78e;p=thirdparty%2Fvala.git tests: No, really, stacked arrays are not supported --- 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); }