Changeset 216800 in webkit


Ignore:
Timestamp:
May 12, 2017 3:51:08 PM (7 years ago)
Author:
beidson@apple.com
Message:

REGRESSION (r216711): API test WKWebView.ClearAppCache is failing.
https://bugs.webkit.org/show_bug.cgi?id=172030

Unreviewed - Test gardening, in effect...

More exploration as to why this continues to fail on the bots.

This change should give us a smoking gun.

  • TestWebKitAPI/Tests/WebKit2Cocoa/LocalStorageClear.mm:

(TEST):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r216795 r216800  
     12017-05-12  Brady Eidson  <beidson@apple.com>
     2
     3        REGRESSION (r216711): API test WKWebView.ClearAppCache is failing.
     4        https://bugs.webkit.org/show_bug.cgi?id=172030
     5
     6        Unreviewed - Test gardening, in effect...
     7
     8        More exploration as to why this continues to fail on the bots.
     9       
     10        This change should give us a smoking gun.
     11       
     12        * TestWebKitAPI/Tests/WebKit2Cocoa/LocalStorageClear.mm:
     13        (TEST):
     14
    1152017-05-12  Hyungwook Lee  <hyungwook.lee@navercorp.com>
    216
  • trunk/Tools/TestWebKitAPI/Tests/WebKit2Cocoa/LocalStorageClear.mm

    r216777 r216800  
    169169    {
    170170        EXPECT_EQ(websiteDataRecords.count, 1ul);
     171        for (WKWebsiteDataRecord *record in websiteDataRecords) {
     172            EXPECT_STREQ("127.0.0.1", [record.displayName UTF8String]);
     173            for (NSString *type in record.dataTypes)
     174                EXPECT_STREQ([WKWebsiteDataTypeOfflineWebApplicationCache UTF8String], [type UTF8String]);
     175        }
     176
    171177        originalWebsiteDataRecordCount = websiteDataRecords.count;
    172178        readyToContinue = true;
Note: See TracChangeset for help on using the changeset viewer.