Fix g_socket_get_available() with TCP on Windows
[platform/upstream/glib.git] / gio / tests / async-close-output-stream.c
index 8fc8e7e..507214c 100644 (file)
@@ -169,6 +169,8 @@ test_without_flush (SetupData     *data,
 {
   prepare_data (data, FALSE);
 
+  g_test_bug ("617937");
+
   /* just close asynchronously */
   g_output_stream_close_async (data->conv_stream,
                                G_PRIORITY_DEFAULT,
@@ -184,6 +186,8 @@ test_with_flush (SetupData *data, gconstpointer user_data)
 {
   GError *error = NULL;
 
+  g_test_bug ("617937");
+
   prepare_data (data, TRUE);
 
   g_output_stream_flush (data->conv_stream, NULL, &error);
@@ -223,6 +227,8 @@ static void
 test_with_async_flush (SetupData     *data,
                        gconstpointer  user_data)
 {
+  g_test_bug ("617937");
+
   prepare_data (data, TRUE);
 
   /* first flush async */
@@ -241,11 +247,10 @@ main (int   argc,
 {
   SetupData *data;
 
-  g_type_init ();
-  g_thread_init (NULL);
-
   g_test_init (&argc, &argv, NULL);
 
+  g_test_bug_base ("http://bugzilla.gnome.org/");
+
   data = g_slice_new (SetupData);
 
   /* test closing asynchronously without flushing manually */