Changeset 75201 in webkit


Ignore:
Timestamp:
Jan 6, 2011 2:51:10 PM (13 years ago)
Author:
Martin Robinson
Message:

2011-01-06 Martin Robinson <mrobinson@igalia.com>

Reviewed by Xan Lopez.

GTK: AX: atk tests need to be updated after recent changes
https://bugs.webkit.org/show_bug.cgi?id=51932

Skip ATK unit tests until we can look into what is causing these failures.

  • tests/testatk.c: (main): Skip all tests.
  • tests/testatkroles.c: (main): Ditto.
Location:
trunk/WebKit/gtk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/gtk/ChangeLog

    r75170 r75201  
     12011-01-06  Martin Robinson  <mrobinson@igalia.com>
     2
     3        Reviewed by Xan Lopez.
     4
     5        GTK: AX: atk tests need to be updated after recent changes
     6        https://bugs.webkit.org/show_bug.cgi?id=51932
     7
     8        Skip ATK unit tests until we can look into what is causing these failures.
     9
     10        * tests/testatk.c:
     11        (main): Skip all tests.
     12        * tests/testatkroles.c:
     13        (main): Ditto.
     14
    1152011-01-06  Martin Robinson  <mrobinson@igalia.com>
    216
  • trunk/WebKit/gtk/tests/testatk.c

    r73874 r75201  
    13141314    gtk_test_init(&argc, &argv, 0);
    13151315
     1316    /* See: https://bugs.webkit.org/show_bug.cgi?id=51932
    13161317    g_test_bug_base("https://bugs.webkit.org/");
    13171318    g_test_add_func("/webkit/atk/comboBox", testWebkitAtkComboBox);
     
    13331334    g_test_add_func("/webkit/atk/listsOfItems", testWebkitAtkListsOfItems);
    13341335    g_test_add_func("/webkit/atk/textChangedNotifications", testWebkitAtkTextChangedNotifications);
     1336    */
    13351337    return g_test_run ();
    13361338}
  • trunk/WebKit/gtk/tests/testatkroles.c

    r73874 r75201  
    308308    g_test_bug_base("https://bugs.webkit.org/");
    309309
     310    /* See: https://bugs.webkit.org/show_bug.cgi?id=51932
    310311    g_test_add("/webkit/atk/test_webkit_atk_get_role_document_frame",
    311312               AtkRolesFixture, HTML_DOCUMENT_FRAME,
     
    368369               atk_roles_fixture_teardown);
    369370
    370     /* Form roles */
     371    // Form roles
    371372    g_test_add("/webkit/atk/test_webkit_atk_get_role_form",
    372373               AtkRolesFixture, HTML_FORM,
     
    415416               test_webkit_atk_get_role_radio_button,
    416417               atk_roles_fixture_teardown);
     418    */
    417419
    418420    return g_test_run();
Note: See TracChangeset for help on using the changeset viewer.