mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-06-01 18:30:05 +02:00
tests: fix leaks in option-context test
Use the new g_option_context_parse_strv() to patch up some leaks in some insufficiently-argv-emulating testcases in option-context.c. This gives some test coverage of the new function while also making option-context now leak-free. https://bugzilla.gnome.org/show_bug.cgi?id=721947
This commit is contained in:
parent
f062fae4d6
commit
d751e65aff
@ -2325,11 +2325,12 @@ flag_reverse_string (void)
|
|||||||
|
|
||||||
argv = split_string ("program --test bla", &argc);
|
argv = split_string ("program --test bla", &argc);
|
||||||
|
|
||||||
retval = g_option_context_parse (context, &argc, &argv, &error);
|
retval = g_option_context_parse_strv (context, &argv, &error);
|
||||||
g_assert (retval == TRUE);
|
g_assert (retval == TRUE);
|
||||||
g_assert_no_error (error);
|
g_assert_no_error (error);
|
||||||
g_strfreev (argv);
|
g_strfreev (argv);
|
||||||
g_option_context_free (context);
|
g_option_context_free (context);
|
||||||
|
g_free (arg);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
@ -2357,7 +2358,7 @@ flag_optional_int (void)
|
|||||||
|
|
||||||
argv = split_string ("program --test 5", &argc);
|
argv = split_string ("program --test 5", &argc);
|
||||||
|
|
||||||
retval = g_option_context_parse (context, &argc, &argv, &error);
|
retval = g_option_context_parse_strv (context, &argv, &error);
|
||||||
g_assert (retval == TRUE);
|
g_assert (retval == TRUE);
|
||||||
g_assert_no_error (error);
|
g_assert_no_error (error);
|
||||||
g_strfreev (argv);
|
g_strfreev (argv);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user