Changeset 190157 in webkit


Ignore:
Timestamp:
Sep 23, 2015 1:32:59 AM (9 years ago)
Author:
ChangSeok Oh
Message:

[GTK] media/media-controls-timeline-updates.html timeouts
https://bugs.webkit.org/show_bug.cgi?id=139363

Reviewed by Philippe Normand.

The default timeout value of gtk port is 6000ms for release build layout tests.
But this is too short to pass some media tests such as media-controls-timeline-updates.html
Let's tweak the test to have shorter test time by seeking.

  • media/media-controls-timeline-updates.html:
  • platform/gtk/TestExpectations:
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r190155 r190157  
     12015-09-23  ChangSeok Oh  <changseok.oh@collabora.com>
     2
     3        [GTK] media/media-controls-timeline-updates.html timeouts
     4        https://bugs.webkit.org/show_bug.cgi?id=139363
     5
     6        Reviewed by Philippe Normand.
     7
     8        The default timeout value of gtk port is 6000ms for release build layout tests.
     9        But this is too short to pass some media tests such as media-controls-timeline-updates.html
     10        Let's tweak the test to have shorter test time by seeking.
     11
     12        * media/media-controls-timeline-updates.html:
     13        * platform/gtk/TestExpectations:
     14
    1152015-09-23  Youenn Fablet  <youenn.fablet@crf.canon.fr>
    216
  • trunk/LayoutTests/media/media-controls-timeline-updates.html

    r180441 r190157  
    4343                testExpected("timeLineValue()", 0);
    4444
    45                 video.play();
     45                video.addEventListener("seeked", function() {
     46                    video.play();
     47                });
     48                video.fastSeek(video.duration - 1);
    4649            }
    4750        </script>
  • trunk/LayoutTests/platform/gtk/TestExpectations

    r190009 r190157  
    13381338webkit.org/b/139362 inspector/css/selector-specificity.html [ Timeout Pass ]
    13391339webkit.org/b/147229 inspector/css/modify-rule-selector.html [ Skip ] # Timeout
    1340 
    1341 webkit.org/b/139363 media/media-controls-timeline-updates.html [ Timeout ]
    13421340
    13431341webkit.org/b/142292 fast/images/animated-gif-window-resizing.html [ Timeout ]
Note: See TracChangeset for help on using the changeset viewer.