diff options
author | Benjamin Otte <otte@redhat.com> | 2019-05-10 15:00:12 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2019-05-12 17:28:18 +0200 |
commit | 6f6b07aaaeeb4bd0027deddb95c0ab616a437d4e (patch) | |
tree | d4f8518b06cdea2606217e000856551721041e16 /testsuite/a11y | |
parent | 4bccd17941e2513ceac9221edf94d9ba920c92d6 (diff) | |
download | gtk+-6f6b07aaaeeb4bd0027deddb95c0ab616a437d4e.tar.gz |
testsuite: Stop using g_test_bug()
The calls used old bugzilla URLs and nobody cared about that.
So apparently they are very unused.
There's also a potential conflict between gitlab and bugzilla URLs and
what base bug to use there.
The old usages have been converted to comments.
Diffstat (limited to 'testsuite/a11y')
-rw-r--r-- | testsuite/a11y/misc.c | 4 | ||||
-rw-r--r-- | testsuite/a11y/text.c | 4 | ||||
-rw-r--r-- | testsuite/a11y/value.c | 2 |
3 files changed, 2 insertions, 8 deletions
diff --git a/testsuite/a11y/misc.c b/testsuite/a11y/misc.c index a6ae6cacd0..96c870ba52 100644 --- a/testsuite/a11y/misc.c +++ b/testsuite/a11y/misc.c @@ -27,7 +27,7 @@ test_popover_parent (void) GtkWidget *p; AtkObject *a; - g_test_bug ("733923"); + /*http://bugzilla.gnome.org/show_bug.cgi?id=733923 */ w = gtk_entry_new (); @@ -50,8 +50,6 @@ main (int argc, char *argv[]) { gtk_test_init (&argc, &argv, NULL); - g_test_bug_base ("http://bugzilla.gnome.org/"); - g_test_add_func ("/popover/accessible-parent", test_popover_parent); return g_test_run (); diff --git a/testsuite/a11y/text.c b/testsuite/a11y/text.c index 7a2a31fd08..fc5ac70cc3 100644 --- a/testsuite/a11y/text.c +++ b/testsuite/a11y/text.c @@ -1064,7 +1064,7 @@ test_bold_label (void) AtkObject *atk_obj; gchar *text; - g_test_bug ("126797"); + /*http://bugzilla.gnome.org/show_bug.cgi?id=126797 */ label = gtk_label_new ("<b>Bold?</b>"); g_object_ref_sink (label); @@ -1089,8 +1089,6 @@ main (int argc, char *argv[]) { gtk_test_init (&argc, &argv, NULL); - g_test_bug_base ("http://bugzilla.gnome.org/"); - g_test_add_func ("/text/bold/GtkLabel", test_bold_label); add_text_tests (gtk_label_new ("")); diff --git a/testsuite/a11y/value.c b/testsuite/a11y/value.c index 176fd2d440..df94c5b0d0 100644 --- a/testsuite/a11y/value.c +++ b/testsuite/a11y/value.c @@ -119,8 +119,6 @@ main (int argc, char *argv[]) { gtk_test_init (&argc, &argv, NULL); - g_test_bug_base ("http://bugzilla.gnome.org/"); - add_value_tests (gtk_spin_button_new_with_range (0, 100, 1)); add_value_tests (gtk_level_bar_new_for_interval (0, 100)); |