Merge branch 'gsubprocess-communicate-utf8-tests' into 'master'

Add UTF-8 communication tests for GSubprocess

See merge request GNOME/glib!381
This commit is contained in:
Philip Withnall
2018-12-19 13:15:04 +00:00
3 changed files with 55 additions and 4 deletions

View File

@@ -200,13 +200,18 @@ main (int argc, char **argv)
GOptionContext *context;
GError *error = NULL;
const char *mode;
gboolean ret;
context = g_option_context_new ("MODE - Test GSubprocess stuff");
g_option_context_add_main_entries (context, options, NULL);
if (!g_option_context_parse (context, &argc, &argv, &error))
ret = g_option_context_parse (context, &argc, &argv, &error);
g_option_context_free (context);
if (!ret)
{
g_option_context_free (context);
g_printerr ("%s: %s\n", argv[0], error->message);
g_error_free (error);
return 1;
}