glib/tests/enviroment.c: Fix running on Windows
authorChun-wei Fan <fanchunwei@src.gnome.org>
Tue, 26 Nov 2013 10:57:04 +0000 (18:57 +0800)
committerChun-wei Fan <fanchunwei@src.gnome.org>
Wed, 27 Nov 2013 00:01:46 +0000 (08:01 +0800)
Don't attempt to insert environmental variables in the hash table during
the test listenv that is an empty string, as GetEnvironmentStringsW() also
returns special enviroment variables which have empty strings as their
variable names, at least on Windows 7 and 8.

https://bugzilla.gnome.org/show_bug.cgi?id=711047

glib/tests/environment.c

index 36c875b..65ee7b0 100644 (file)
@@ -17,7 +17,8 @@ test_listenv (void)
 
       parts = g_strsplit (list[i], "=", 2);
       g_assert (g_hash_table_lookup (table, parts[0]) == NULL);
-      g_hash_table_insert (table, parts[0], parts[1]);
+      if (g_strcmp0 (parts[0], ""))
+        g_hash_table_insert (table, parts[0], parts[1]);
       g_free (parts);
     }
   g_strfreev (list);