summaryrefslogtreecommitdiff
path: root/tests/gimarshallingtests.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/gimarshallingtests.c')
-rw-r--r--tests/gimarshallingtests.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/gimarshallingtests.c b/tests/gimarshallingtests.c
index 5d0caea4..2072b9f2 100644
--- a/tests/gimarshallingtests.c
+++ b/tests/gimarshallingtests.c
@@ -1205,6 +1205,19 @@ gi_marshalling_tests_array_fixed_int_in (const gint *ints)
}
/**
+ * gi_marshalling_tests_array_fixed_caller_allocated_out:
+ * @ints: (out caller-allocates) (array fixed-size=4):
+ */
+void
+gi_marshalling_tests_array_fixed_caller_allocated_out (gint *ints)
+{
+ ints[0] = -1;
+ ints[1] = 0;
+ ints[2] = 1;
+ ints[3] = 2;
+}
+
+/**
* gi_marshalling_tests_array_fixed_short_in:
* @shorts: (array fixed-size=4):
*/
@@ -1252,6 +1265,23 @@ gi_marshalling_tests_array_fixed_out_struct (GIMarshallingTestsSimpleStruct **st
}
/**
+ * gi_marshalling_tests_array_fixed_caller_allocated_struct_out:
+ * @structs: (out caller-allocates) (array fixed-size=4):
+ */
+void
+gi_marshalling_tests_array_fixed_caller_allocated_struct_out (GIMarshallingTestsSimpleStruct *structs)
+{
+ structs[0].long_ = -2;
+ structs[0].int8 = -1;
+ structs[1].long_ = 1;
+ structs[1].int8 = 2;
+ structs[2].long_ = 3;
+ structs[2].int8 = 4;
+ structs[3].long_ = 5;
+ structs[3].int8 = 6;
+}
+
+/**
* gi_marshalling_tests_array_fixed_inout:
* @ints: (inout) (array fixed-size=4) (transfer none):
*/