Merge branch 'wip/refi64/fix-marshaller-args' into 'main'

gdbus-codegen: Fix callback GUnixFDList parameter order

See merge request GNOME/glib!4524
This commit is contained in:
Philip Withnall
2025-02-27 14:21:43 +00:00
2 changed files with 9 additions and 2 deletions

View File

@@ -1352,6 +1352,11 @@ G_END_DECLS
self.assertIs(stripped_out.count(f"{func_name},"), 1)
self.assertIs(stripped_out.count(f"{func_name} ("), 1)
self.assertLess(
stripped_out.index("arg_method_invocation"),
stripped_out.index("arg_fd_list"),
)
index = 1
self.assertIs(
stripped_out.count(f"g_marshal_value_peek_object (param_values + {index})"),