tests: Drop use of g_test_bug_base()

Include the base URI in the `g_test_bug()` calls instead. This resolves
inconsistencies between the old bug base (bugzilla.gnome.org) and the
new bug base (gitlab.gnome.org). It also has the advantage that the URI
passed to `g_test_bug()` is now clickable in the code editor, rather
than being split across two locations.

See https://gitlab.gnome.org/GNOME/glib/-/merge_requests/275#note_303175

Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
This commit is contained in:
Philip Withnall
2021-05-13 22:12:29 +01:00
parent 46ab6821a3
commit 7e9585177d
44 changed files with 66 additions and 127 deletions

View File

@@ -1051,7 +1051,7 @@ test_message_parse_empty_arrays_of_arrays (void)
GVariant *body;
GError *error = NULL;
g_test_bug ("673612");
g_test_bug ("https://bugzilla.gnome.org/show_bug.cgi?id=673612");
/* These three-element array of empty arrays were previously read back as a
* two-element array of empty arrays, due to sometimes erroneously skipping
* four bytes to align for the eight-byte-aligned grandchild types (x and
@@ -1107,7 +1107,7 @@ test_message_serialize_double_array (void)
GVariantBuilder builder;
GVariant *body;
g_test_bug ("732754");
g_test_bug ("https://bugzilla.gnome.org/show_bug.cgi?id=732754");
g_variant_builder_init (&builder, G_VARIANT_TYPE ("ad"));
g_variant_builder_add (&builder, "d", (gdouble)0.0);
@@ -1480,7 +1480,6 @@ main (int argc,
setlocale (LC_ALL, "C");
g_test_init (&argc, &argv, NULL);
g_test_bug_base ("https://bugzilla.gnome.org/show_bug.cgi?id=");
g_test_add_func ("/gdbus/message-serialize/basic",
test_message_serialize_basic);