diff options
author | Ignacio Casal Quinteiro <icq@gnome.org> | 2011-01-19 12:07:49 +0100 |
---|---|---|
committer | Ignacio Casal Quinteiro <icq@gnome.org> | 2011-01-19 12:07:49 +0100 |
commit | 639558ad4138dcc228ff898430f8e4c2a29b3ae9 (patch) | |
tree | 01175b643cbe72655148d736e8af34725a89f8ff /tests/gimarshallingtests.h | |
parent | f86575f337c6dce9a67b606712395d83bf8bfb92 (diff) | |
download | gobject-introspection-639558ad4138dcc228ff898430f8e4c2a29b3ae9.tar.gz |
[tests] add tests for guint8 arrays
* guint8 can be interpreted as array characters that can be memcpyied
during marshalling so add a test to check if we are correctly handling
this codepath
Diffstat (limited to 'tests/gimarshallingtests.h')
-rw-r--r-- | tests/gimarshallingtests.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/gimarshallingtests.h b/tests/gimarshallingtests.h index d15478f6..06058839 100644 --- a/tests/gimarshallingtests.h +++ b/tests/gimarshallingtests.h @@ -281,6 +281,8 @@ const gint *gi_marshalling_tests_array_return (gint *length); void gi_marshalling_tests_array_in (const gint *ints, gint length); +void gi_marshalling_tests_array_uint8_in (const guint8 *chars, gint length); + void gi_marshalling_tests_array_out (gint **ints, gint *length); void gi_marshalling_tests_array_inout (gint **ints, gint *length); |