Update contrib.
1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3 * Portions copyright (c) 2009 Nokia Corporation. All rights reserved.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
21 * Modified by the GLib Team and others 1997-2000. See the AUTHORS
22 * file for a list of people on the GLib Team. See the ChangeLog
23 * files for a list of changes. These files are distributed with
24 * GLib at ftp://ftp.gtk.org/pub/gtk/.
27 #undef G_DISABLE_ASSERT
38 #define pipe(fds) _pipe(fds, 4096, _O_BINARY)
42 #include "mrt2_glib2_test.h"
43 #endif /*__SYMBIAN32__*/
53 gchar *erroutput = NULL;
54 int pipedown[2], pipeup[2];
59 if (!g_spawn_command_line_sync ("helloworld.exe 10 11 12",
60 NULL, NULL, &exit_status,
69 g_warning ("no error for sync spawn of nonexistent application");
75 if (!g_spawn_command_line_async ("helloworld.exe 10 11 12",
84 g_warning ("no error for async spawn of nonexistent application");
91 if (!g_spawn_command_line_sync ("/bin/sh -c 'echo hello'",
95 fprintf (stderr, "Error: %s\n", err->message);
101 g_assert (output != NULL);
103 if (strcmp (output, "hello\n") != 0)
105 printf ("output was '%s', should have been 'hello'\n",
115 printf ("Running netstat synchronously, collecting its output\n");
117 if (!g_spawn_command_line_sync ("c:\\sys\\bin\\helloworld.exe",
118 &output, &erroutput, NULL,
121 fprintf (stderr, "Error: %s\n", err->message);
127 g_assert (output != NULL);
128 g_assert (erroutput != NULL);
130 if (strstr (output, "Active Connections") == 0)
132 printf ("output was '%s', should have contained 'Active Connections'\n",
137 if (erroutput[0] != '\0')
139 printf ("error output was '%s', should have been empty\n",
150 printf ("Running spawn-test-win32-gui in various ways. Click on the OK buttons.\n");
152 printf ("First asynchronously (without wait).\n");
154 if (!g_spawn_command_line_async ("'.\\spawn-test-win32-gui.exe' 1", &err))
156 fprintf (stderr, "Error: %s\n", err->message);
161 printf ("Now synchronously, collecting its output.\n");
162 if (!g_spawn_command_line_sync ("'.\\spawn-test-win32-gui.exe' 2",
163 &output, &erroutput, NULL,
166 fprintf (stderr, "Error: %s\n", err->message);
172 g_assert (output != NULL);
173 g_assert (erroutput != NULL);
175 if (strcmp (output, "This is stdout\r\n") != 0)
177 printf ("output was '%s', should have been 'This is stdout'\n",
178 g_strescape (output, NULL));
182 if (strcmp (erroutput, "This is stderr\r\n") != 0)
184 printf ("error output was '%s', should have been 'This is stderr'\n",
185 g_strescape (erroutput, NULL));
193 printf ("Now with G_SPAWN_FILE_AND_ARGV_ZERO.\n");
195 if (!g_shell_parse_argv ("'.\\spawn-test-win32-gui.exe' this-should-be-argv-zero nop", NULL, &argv, &err))
197 fprintf (stderr, "Error parsing command line? %s\n", err->message);
202 if (!g_spawn_async (NULL, argv, NULL,
203 G_SPAWN_FILE_AND_ARGV_ZERO,
207 fprintf (stderr, "Error: %s\n", err->message);
212 printf ("Now talking to it through pipes.\n");
214 if (pipe (pipedown) < 0 ||
217 fprintf (stderr, "Could not create pipes\n");
221 if (!g_shell_parse_argv (g_strdup_printf ("'.\\spawn-test-win32-gui.exe' pipes %d %d",
222 pipedown[0], pipeup[1]),
226 fprintf (stderr, "Error parsing command line? %s\n", err->message);
231 if (!g_spawn_async (NULL, argv, NULL,
232 G_SPAWN_LEAVE_DESCRIPTORS_OPEN |
233 G_SPAWN_DO_NOT_REAP_CHILD,
237 fprintf (stderr, "Error: %s\n", err->message);
246 if ((k = read (pipeup[0], &n, sizeof (n))) != sizeof (n))
249 fprintf (stderr, "Read error: %s\n", g_strerror (errno));
251 fprintf (stderr, "Wanted to read %d bytes, got %d\n",
256 if ((k = read (pipeup[0], buf, n)) != n)
259 fprintf (stderr, "Read error: %s\n", g_strerror (errno));
261 fprintf (stderr, "Wanted to read %d bytes, got %d\n",
266 n = strlen ("Bye then");
267 if (write (pipedown[1], &n, sizeof (n)) == -1 ||
268 write (pipedown[1], "Bye then", n) == -1)
270 fprintf (stderr, "Write error: %s\n", g_strerror (errno));
274 if ((k = read (pipeup[0], &n, sizeof (n))) != sizeof (n))
277 fprintf (stderr, "Read error: %s\n", g_strerror (errno));
279 fprintf (stderr, "Wanted to read %d bytes, got %d\n",
284 if ((k = read (pipeup[0], buf, n)) != n)
287 fprintf (stderr, "Read error: %s\n", g_strerror (errno));
289 fprintf (stderr, "Wanted to read %d bytes, got %d\n",
304 g_log_set_handler (NULL, G_LOG_FLAG_FATAL| G_LOG_FLAG_RECURSION | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_MESSAGE | G_LOG_LEVEL_INFO | G_LOG_LEVEL_DEBUG, &mrtLogHandler, NULL);
305 g_set_print_handler(mrtPrintHandler);
311 testResultXml("spawn_test");
312 #endif /* EMULATOR */