Changeset 169443 in webkit


Ignore:
Timestamp:
May 29, 2014 2:38:27 AM (10 years ago)
Author:
Carlos Garcia Campos
Message:

[WK2][GTK] ASSERTION FAILED: m_status == Scheduled in GMainLoopSource
https://bugs.webkit.org/show_bug.cgi?id=131220

Reviewed by Philippe Normand.

Unskip inspector-protocol/dom/remove-multiple-nodes.html.

  • platform/gtk/TestExpectations:
Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r169434 r169443  
     12014-05-29  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        [WK2][GTK] ASSERTION FAILED: m_status == Scheduled in GMainLoopSource
     4        https://bugs.webkit.org/show_bug.cgi?id=131220
     5
     6        Reviewed by Philippe Normand.
     7
     8        Unskip inspector-protocol/dom/remove-multiple-nodes.html.
     9
     10        * platform/gtk/TestExpectations:
     11
    1122014-05-28  Martin Hock  <mhock@apple.com>
    213
  • trunk/LayoutTests/platform/gtk/TestExpectations

    r169334 r169443  
    482482
    483483webkit.org/b/131219 [ Debug ] http/tests/xmlhttprequest/access-control-repeated-failed-preflight-crash.html [ Crash ]
    484 
    485 webkit.org/b/131220 [ Debug ] inspector-protocol/dom/remove-multiple-nodes.html [ Crash ]
    486484
    487485webkit.org/b/116977 [ Debug ] media/event-attributes.html [ Crash Pass ]
  • trunk/Source/WTF/wtf/gobject/GMainLoopSource.cpp

    r166636 r169443  
    204204
    205205    ASSERT(m_boolCallback);
    206     ASSERT(m_status == Scheduled);
     206    ASSERT(m_status == Scheduled || m_status == Dispatched);
    207207    m_status = Dispatched;
    208208
     
    221221
    222222    ASSERT(m_socketCallback);
    223     ASSERT(m_status == Scheduled);
     223    ASSERT(m_status == Scheduled || m_status == Dispatched);
    224224    m_status = Dispatched;
    225225
Note: See TracChangeset for help on using the changeset viewer.