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.
g_test_init (argcp, argvp, NULL);
gtk_disable_setlocale();
setlocale (LC_ALL, "en_US.UTF-8");
- g_test_bug_base ("http://bugzilla.gnome.org/show_bug.cgi?id=%s");
/* XSendEvent() doesn't work yet on XI2 events.
* So at the moment gdk_test_simulate_* can only
GtkWidget *p;
AtkObject *a;
- g_test_bug ("733923");
+ /*http://bugzilla.gnome.org/show_bug.cgi?id=733923 */
w = gtk_entry_new ();
{
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 ();
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);
{
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 (""));
{
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));
g_test_init (&argc, &argv, NULL);
- g_test_bug_base ("http://bugzilla.gnome.org");
-
enum_class = g_type_class_ref (GDK_TYPE_MEMORY_FORMAT);
for (format = 0; format < GDK_MEMORY_N_FORMATS; format++)
gtk_init ();
- g_test_bug_base ("http://bugzilla.gnome.org/");
-
g_test_add_func ("/rectangle/equal", test_rectangle_equal);
g_test_add_func ("/rectangle/intersect", test_rectangle_intersect);
g_test_add_func ("/rectangle/union", test_rectangle_union);
GdkRGBA color;
gboolean res;
- g_test_bug ("667485");
+ /*http://bugzilla.gnome.org/show_bug.cgi?id=667485 */
res = gdk_rgba_parse (&color, "rgb(,,)");
g_assert (!res);
int
main (int argc, char *argv[])
{
- g_test_init (&argc, &argv, NULL);
+ g_test_init (&argc, &argv, NULL);
- g_test_bug_base ("http://bugzilla.gnome.org");
+ g_test_add_func ("/rgba/parse", test_color_parse);
+ g_test_add_func ("/rgba/parse/nonsense", test_color_parse_nonsense);
+ g_test_add_func ("/rgba/to-string", test_color_to_string);
+ g_test_add_func ("/rgba/copy", test_color_copy);
- g_test_add_func ("/rgba/parse", test_color_parse);
- g_test_add_func ("/rgba/parse/nonsense", test_color_parse_nonsense);
- g_test_add_func ("/rgba/to-string", test_color_to_string);
- g_test_add_func ("/rgba/copy", test_color_copy);
-
- return g_test_run ();
+ return g_test_run ();
}
gtk_init ();
- g_test_bug_base ("http://bugzilla.gnome.org/");
-
g_test_add_func ("/seat/list", test_list_seats);
g_test_add_func ("/seat/default", test_default_seat);
g_test_init (&argc, &argv, NULL);
setlocale (LC_ALL, "C");
- g_test_bug_base ("http://bugzilla.gnome.org/show_bug.cgi?id=%s");
create_masks ();
main (int argc, char *argv[])
{
gtk_test_init (&argc, &argv);
- g_test_bug_base ("http://bugzilla.gnome.org/");
gtk_test_register_all_types();
g_test_add_func ("/tests/iconview-new", test_iconview_new);
{
g_test_init (&argc, &argv, NULL);
setlocale (LC_ALL, "C");
- g_test_bug_base ("http://bugzilla.gnome.org/show_bug.cgi?id=%s");
number_quark = g_quark_from_static_string ("Hell and fire was spawned to be released.");
changes_quark = g_quark_from_static_string ("What did I see? Can I believe what I saw?");
int i;
gboolean add;
- g_test_bug ("301558");
+ /*http://bugzilla.gnome.org/show_bug.cgi?id=301558 */
tree = gtk_tree_store_new (2, G_TYPE_INT, G_TYPE_BOOLEAN);
gtk_tree_store_append (tree, &iter, NULL);
int n;
GtkTreePath *path;
- g_test_bug ("311955");
+ /*http://bugzilla.gnome.org/show_bug.cgi?id=311955 */
store = gtk_tree_store_new (1, G_TYPE_INT);
store = gtk_tree_store_newv (2, columns);
model = GTK_TREE_MODEL (store);
- g_test_bug ("346800");
+ /*http://bugzilla.gnome.org/show_bug.cgi?id=346800 */
filter = GTK_TREE_MODEL_FILTER (gtk_tree_model_filter_new (model, NULL));
gtk_tree_model_filter_set_visible_column (filter, 1);
GtkWidget *view G_GNUC_UNUSED;
gboolean visible = TRUE;
- g_test_bug ("464173");
+ /*http://bugzilla.gnome.org/show_bug.cgi?id=464173 */
model = gtk_tree_store_new (1, G_TYPE_STRING);
gtk_tree_store_append (model, &iter1, NULL);
GtkWidget *tree_view G_GNUC_UNUSED;
- g_test_bug ("540201");
+ /*http://bugzilla.gnome.org/show_bug.cgi?id=540201 */
store = gtk_tree_store_new (1, G_TYPE_INT);
GtkTreeIter iter;
GtkTreeIter *swap, *parent, *child;
- g_test_bug ("529287");
+ /*http://bugzilla.gnome.org/show_bug.cgi?id=529287 */
store = gtk_tree_store_new (1, G_TYPE_STRING);
filtered = gtk_tree_model_filter_new (GTK_TREE_MODEL (store), NULL);
GtkTreeIter item_iter;
SignalMonitor *monitor;
- g_test_bug ("621076");
+ /*http://bugzilla.gnome.org/show_bug.cgi?id=621076 */
store = gtk_tree_store_new (1, G_TYPE_STRING);
filter = gtk_tree_model_filter_new (GTK_TREE_MODEL (store), NULL);
{
g_test_init (&argc, &argv, NULL);
setlocale (LC_ALL, "C");
- g_test_bug_base ("http://bugzilla.gnome.org/show_bug.cgi?id=%s");
number_quark = g_quark_from_static_string ("Hell and fire was spawned to be released.");
changes_quark = g_quark_from_static_string ("What did I see? Can I believe what I saw?");
g_test_init (&argc, &argv, NULL);
gtk_disable_setlocale();
setlocale (LC_ALL, "C");
- g_test_bug_base ("http://bugzilla.gnome.org/show_bug.cgi?id=%s");
g_test_add_func ("/main/init", test_init);
{
g_test_init (&argc, &argv, NULL);
setlocale (LC_ALL, "C");
- g_test_bug_base ("http://bugzilla.gnome.org/show_bug.cgi?id=%s");
number_quark = g_quark_from_static_string ("Hell and fire was spawned to be released.");
changes_quark = g_quark_from_static_string ("What did I see? Can I believe what I saw?");
g_test_init (&argc, &argv, NULL);
g_setenv ("GTK_MODULES", "", TRUE);
setlocale (LC_ALL, "C");
- g_test_bug_base ("http://bugzilla.gnome.org/show_bug.cgi?id=%s");
g_test_add_func ("/no_gtk_init/gdk_cairo_set_source_pixbuf", test_gdk_cairo_set_source_pixbuf);
{
g_test_init (&argc, &argv, NULL);
setlocale (LC_ALL, "C");
- g_test_bug_base ("http://bugzilla.gnome.org/show_bug.cgi?id=%s");
g_test_add_func ("/rbtree/crash", test_crash);
g_test_add_func ("/rbtree/crash2", test_crash2);
{
g_test_init (&argc, &argv, NULL);
setlocale (LC_ALL, "C");
- g_test_bug_base ("http://bugzilla.gnome.org/show_bug.cgi?id=%s");
g_test_add_func ("/rbtree/create", test_create);
g_test_add_func ("/rbtree/insert_after", test_insert_after);
{
g_test_init (&argc, &argv, NULL);
setlocale (LC_ALL, "C");
- g_test_bug_base ("http://bugzilla.gnome.org/show_bug.cgi?id=%s");
number_quark = g_quark_from_static_string ("Hell and fire was spawned to be released.");
changes_quark = g_quark_from_static_string ("What did I see? Can I believe what I saw?");
{
g_test_init (&argc, &argv, NULL);
setlocale (LC_ALL, "C");
- g_test_bug_base ("http://bugzilla.gnome.org/show_bug.cgi?id=%s");
number_quark = g_quark_from_static_string ("Hell and fire was spawned to be released.");
changes_quark = g_quark_from_static_string ("What did I see? Can I believe what I saw?");
{
g_test_init (&argc, &argv, NULL);
setlocale (LC_ALL, "C");
- g_test_bug_base ("http://bugzilla.gnome.org/show_bug.cgi?id=%s");
number_quark = g_quark_from_static_string ("Hell and fire was spawned to be released.");
changes_quark = g_quark_from_static_string ("What did I see? Can I believe what I saw?");
GtkTreePath *path;
GtkTreeIter iter, iter2, sort_iter;
- g_test_bug ("300089");
+ /*http://bugzilla.gnome.org/show_bug.cgi?id=300089 */
child_model = GTK_TREE_MODEL (gtk_tree_store_new (1, G_TYPE_STRING));
GtkTreeIter a, aa, aaa, aab, iter;
GtkTreeModel *s_model;
- g_test_bug ("364946");
+ /*http://bugzilla.gnome.org/show_bug.cgi?id=364946 */
store = gtk_tree_store_new (1, G_TYPE_STRING);
GtkTreeIter iter;
guint count = 0;
- g_test_bug ("698846");
+ /*http://bugzilla.gnome.org/show_bug.cgi?id=698846 */
store = gtk_list_store_new (1, G_TYPE_STRING);
sorted = gtk_tree_model_sort_new_with_model (GTK_TREE_MODEL (store));
GtkSortType order;
gboolean ret;
- g_test_bug ("792459");
+ /*http://bugzilla.gnome.org/show_bug.cgi?id=792459 */
store = gtk_list_store_new (1, G_TYPE_STRING);
sorted = gtk_tree_model_sort_new_with_model (GTK_TREE_MODEL (store));
{
g_test_init (&argc, &argv, NULL);
setlocale (LC_ALL, "C");
- g_test_bug_base ("http://bugzilla.gnome.org/show_bug.cgi?id=%s");
number_quark = g_quark_from_static_string ("Hell and fire was spawned to be released.");
changes_quark = g_quark_from_static_string ("What did I see? Can I believe what I saw?");
{
gtk_test_init (&argc, &argv, NULL);
- g_test_bug_base ("http://bugzilla.gnome.org/");
-
register_list_store_tests ();
register_tree_store_tests ();
register_model_ref_count_tests ();
/* Stripped down version of test case for bug 77977 by Damon Chaplin */
- g_test_bug ("77977");
+ /*http://bugzilla.gnome.org/show_bug.cgi?id=77977 */
tree_store = gtk_tree_store_new (1, G_TYPE_STRING);
GtkTreeStore *tree_store;
gint new_order[1] = { 0 };
- g_test_bug ("698396");
+ /*http://bugzilla.gnome.org/show_bug.cgi?id=698396 */
tree_store = gtk_tree_store_new (1, G_TYPE_STRING);
GtkListStore *list_store;
GtkWidget *view;
- g_test_bug ("546005");
+ /*http://bugzilla.gnome.org/show_bug.cgi?id=546005 */
/* Tests provided by Bjorn Lindqvist, Paul Pogonyshev */
view = gtk_tree_view_new ();
GtkTreePath *path;
GtkListStore *list_store;
- g_test_bug ("539377");
+ /*http://bugzilla.gnome.org/show_bug.cgi?id=539377 */
/* Test provided by Bjorn Lindqvist */
GtkTreeSelection *selection;
GtkWidget *view;
- g_test_bug ("702957");
+ /*http://bugzilla.gnome.org/show_bug.cgi?id=702957 */
list_store = gtk_list_store_new (1, G_TYPE_STRING);
view = gtk_tree_view_new_with_model (GTK_TREE_MODEL (list_store));
GtkWidget *view;
GtkTreeIter iter;
- g_test_bug ("712760");
+ /*http://bugzilla.gnome.org/show_bug.cgi?id=712760 */
list_store = gtk_list_store_new (1, G_TYPE_STRING);
view = gtk_tree_view_new_with_model (GTK_TREE_MODEL (list_store));
char **argv)
{
gtk_test_init (&argc, &argv, NULL);
- g_test_bug_base ("http://bugzilla.gnome.org/");
g_test_add_func ("/TreeView/cursor/bug-546005", test_bug_546005);
g_test_add_func ("/TreeView/cursor/bug-539377", test_bug_539377);
GtkWidget *window;
gint w, h, w1, h1;
- g_test_bug ("696882");
+ /*http://bugzilla.gnome.org/show_bug.cgi?id=696882 */
/* test that hide/show does not affect the size */
gint i;
gtk_test_init (&argc, &argv);
- g_test_bug_base ("http://bugzilla.gnome.org/");
for (i = 0; i < argc; i++)
{