Add bug ref

This commit is contained in:
Matthias Clasen 2005-09-14 18:12:52 +00:00
parent 81719cc164
commit 283d4a73f9

View File

@ -755,25 +755,6 @@ test_lists (void)
g_key_file_free (keyfile);
}
static void
test_groups (void)
{
GKeyFile *keyfile;
const gchar *data =
"[1]\n"
"key1=123\n"
"[2]\n"
"key2=123\n";
keyfile = load_data (data, 0);
check_string_value (keyfile, "1", "key1", "123");
check_string_value (keyfile, "2", "key2", "123");
g_key_file_free (keyfile);
}
/* http://bugzilla.gnome.org/show_bug.cgi?id=165887 */
static void
test_group_remove (void)
@ -879,6 +860,27 @@ test_key_remove (void)
}
/* http://bugzilla.gnome.org/show_bug.cgi?id=316309 */
static void
test_groups (void)
{
GKeyFile *keyfile;
const gchar *data =
"[1]\n"
"key1=123\n"
"[2]\n"
"key2=123\n";
keyfile = load_data (data, 0);
check_string_value (keyfile, "1", "key1", "123");
check_string_value (keyfile, "2", "key2", "123");
g_key_file_free (keyfile);
}
int
main (int argc, char *argv[])
{