Changeset 245363 in webkit


Ignore:
Timestamp:
May 15, 2019 3:37:12 PM (5 years ago)
Author:
Devin Rousso
Message:

REGRESSION (r240644): Layout Test inspector/page/overrideSetting-ICECandidateFilteringEnabled.html is a flaky timeout
https://bugs.webkit.org/show_bug.cgi?id=194437
<rdar://problem/48008005>

Reviewed by Joseph Pecoraro.

  • inspector/page/overrideSetting-ICECandidateFilteringEnabled.html:
  • inspector/page/overrideSetting-ICECandidateFilteringEnabled-expected.txt:
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r245362 r245363  
     12019-05-15  Devin Rousso  <drousso@apple.com>
     2
     3        REGRESSION (r240644): Layout Test inspector/page/overrideSetting-ICECandidateFilteringEnabled.html is a flaky timeout
     4        https://bugs.webkit.org/show_bug.cgi?id=194437
     5        <rdar://problem/48008005>
     6
     7        Reviewed by Joseph Pecoraro.
     8
     9        * inspector/page/overrideSetting-ICECandidateFilteringEnabled.html:
     10        * inspector/page/overrideSetting-ICECandidateFilteringEnabled-expected.txt:
     11
    1122019-05-15  Devin Rousso  <drousso@apple.com>
    213
  • trunk/LayoutTests/inspector/page/overrideSetting-ICECandidateFilteringEnabled-expected.txt

    r244280 r245363  
    99PASS: received ICE candidate.
    1010PASS: Should be able to establish a connection when filtering ice candidates.
    11 Removing ICECandidateFilteringEnabled override...
    12 Creating data channel...
    13 PASS: created offer
    14 PASS: Should not be able to establish a connection when filtering ice candidates.
    1511
  • trunk/LayoutTests/inspector/page/overrideSetting-ICECandidateFilteringEnabled.html

    r244280 r245363  
    4444function test()
    4545{
    46     InspectorTest.debug();
    47 
    4846    let suite = InspectorTest.createAsyncSuite("Page.overrideSetting");
    4947
     
    6058            ])
    6159            InspectorTest.expectThat(overriddenResult.data.success, "Should be able to establish a connection when filtering ice candidates.");
    62 
    63             InspectorTest.log("Removing ICECandidateFilteringEnabled override...");
    64             await PageAgent.overrideSetting(PageAgent.Setting.ICECandidateFilteringEnabled);
    65 
    66             let [originalResult] = await Promise.all([
    67                 InspectorTest.awaitEvent("DataChannel"),
    68                 InspectorTest.evaluateInPage(`createDataChannel()`),
    69             ])
    70             InspectorTest.expectFalse(originalResult.data.success, "Should not be able to establish a connection when filtering ice candidates.");
    7160        },
    7261    });
Note: See TracChangeset for help on using the changeset viewer.