]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
tests: No, really, stacked arrays are not supported
authorRico Tzschichholz <ricotz@ubuntu.com>
Thu, 9 Aug 2018 08:27:24 +0000 (10:27 +0200)
committerRico Tzschichholz <ricotz@ubuntu.com>
Thu, 9 Aug 2018 08:42:44 +0000 (10:42 +0200)
valadoc/tests/drivers/api-test.data.vapi
valadoc/tests/drivers/generic-api-test.vala

index f0b27ac5b1a2d9935b99bd5ff1ef05f9cd1a3dae..e5386f236509f49a744fd8566ab9905b680c1133 100644 (file)
@@ -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 ();
 }
 
 
index b073fa611396145eb4a8730b2e8409d017ffcd5b..ef8ad28b1559dbf54a5a15ae0a8d8447306eb568 100644 (file)
@@ -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);
 }