Changeset 189595 in webkit


Ignore:
Timestamp:
Sep 10, 2015 3:59:08 PM (9 years ago)
Author:
ap@apple.com
Message:

Spurious output on Windows tests: AQMEIOManager::FindIOUnit: error -1
https://bugs.webkit.org/show_bug.cgi?id=142929

Reviewed by Brent Fulgham.

Tools:

Silence the logging. We'll track fixing the root cause in Radar.

  • Scripts/webkitpy/port/mac.py:

(MacPort.stderr_patterns_to_strip): Added a FIXME.

  • Scripts/webkitpy/port/win.py:

(WinPort.logging_patterns_to_strip): Added.

LayoutTests:

  • platform/win/TestExpectations: Unskip some newly added tests that are affected.

We still skip the whole media directory - updating the results and unskipping those
tests would be a separate project.

Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r189594 r189595  
     12015-09-10  Alexey Proskuryakov  <ap@apple.com>
     2
     3        Spurious output on Windows tests: AQMEIOManager::FindIOUnit: error -1
     4        https://bugs.webkit.org/show_bug.cgi?id=142929
     5
     6        Reviewed by Brent Fulgham.
     7
     8        * platform/win/TestExpectations: Unskip some newly added tests that are affected.
     9        We still skip the whole media directory - updating the results and unskipping those
     10        tests would be a separate project.
     11
    1122015-09-10  David Hyatt  <hyatt@apple.com>
    213
  • trunk/LayoutTests/platform/win/TestExpectations

    r189548 r189595  
    727727# Sensitive to load timing or PHP behavior
    728728webkit.org/b/44873 http/tests/css/css-image-loading.html [ Skip ]
    729 webkit.org/b/149007 http/tests/css/link-css-disabled-value-with-slow-loading-sheet.html [ Pass Failure ]
    730 http/tests/css/link-css-disabled-value-with-slow-loading-sheet-in-error.html [ Pass Failure ] # Flaky
    731729
    732730# Assertion failure in replaySavedEvents http://webkit.org/b/21796
     
    753751# Deactivate all media tests on Apple Windows due to <rdar://problem/18681688> generating
    754752# spam logging output that causes tests to fail. Will re-enable once this is fixed.
     753# FIXME: We now filter out the logging, so many of the tests can likely be re-enabled.
    755754media [ Skip ]
    756755fast/media [ Skip ]
     
    758757
    759758fast/layers/video-layer.html [ Skip ] # Skip until video control changes are done.
    760 
    761 # "AQMEIOManager::FindIOUnit: error -1" errors in tests output.
    762 webkit.org/b/148903 imported/w3c/web-platform-tests/html/semantics/embedded-content/media-elements/ [ Skip ]
    763759
    764760# Assertion failures
  • trunk/Tools/ChangeLog

    r189573 r189595  
     12015-09-10  Alexey Proskuryakov  <ap@apple.com>
     2
     3        Spurious output on Windows tests: AQMEIOManager::FindIOUnit: error -1
     4        https://bugs.webkit.org/show_bug.cgi?id=142929
     5
     6        Reviewed by Brent Fulgham.
     7
     8        Silence the logging. We'll track fixing the root cause in Radar.
     9
     10        * Scripts/webkitpy/port/mac.py:
     11        (MacPort.stderr_patterns_to_strip): Added a FIXME.
     12
     13        * Scripts/webkitpy/port/win.py:
     14        (WinPort.logging_patterns_to_strip): Added.
     15
    1162015-09-09  Andy Estes  <aestes@apple.com>
    217
  • trunk/Tools/Scripts/webkitpy/port/mac.py

    r189128 r189595  
    313313    def stderr_patterns_to_strip(self):
    314314        worthless_patterns = []
     315        # FIXME: We still get CoreMedia stderr logging that doesn't match the below lines. 'defaults write com.apple.coremedia fig_notes 0' may work better for silencing them all, however running tests shouldn't change user's defaults.
    315316        worthless_patterns.append((re.compile('.*(Fig|fig|itemasync|vt|mv_|PullParamSetSPS|ccrp_|client).* signalled err=.*\n'), ''))
    316317        worthless_patterns.append((re.compile('.*<<<< FigFilePlayer >>>>.*\n'), ''))
  • trunk/Tools/Scripts/webkitpy/port/win.py

    r187908 r189595  
    329329
    330330        return system_pid
     331
     332    def logging_patterns_to_strip(self):
     333        # rdar://problem/18681688
     334        return [(re.compile('AQMEIOManager::FindIOUnit: error \-1\n'), '')]
Note: See TracChangeset for help on using the changeset viewer.