Changeset 216272 in webkit


Ignore:
Timestamp:
May 5, 2017 2:15:51 PM (7 years ago)
Author:
BJ Burg
Message:

API test WebKit2.WKHTTPCookieStore fails due to possible issue with handling non-session cookies
https://bugs.webkit.org/show_bug.cgi?id=171748

Unreviewed test gardening.

The assertion failure will be investigated separately in order to avoid rolling out
the fix for "secure" cookies. This assertion fails even without r216258 applied.

  • TestWebKitAPI/Tests/WebKit2Cocoa/WKHTTPCookieStore.mm:

(TEST):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r216271 r216272  
     12017-05-05  Brian Burg  <bburg@apple.com>
     2
     3        API test WebKit2.WKHTTPCookieStore fails due to possible issue with handling non-session cookies
     4        https://bugs.webkit.org/show_bug.cgi?id=171748
     5
     6        Unreviewed test gardening.
     7
     8        The assertion failure will be investigated separately in order to avoid rolling out
     9        the fix for "secure" cookies. This assertion fails even without r216258 applied.
     10
     11        * TestWebKitAPI/Tests/WebKit2Cocoa/WKHTTPCookieStore.mm:
     12        (TEST):
     13
    1142017-05-05  Jonathan Bedard  <jbedard@apple.com>
    215
  • trunk/Tools/TestWebKitAPI/Tests/WebKit2Cocoa/WKHTTPCookieStore.mm

    r216258 r216272  
    132132            ASSERT_TRUE([cookie2.get().domain isEqualToString:cookie.domain]);
    133133            ASSERT_FALSE(cookie.secure);
    134             ASSERT_FALSE(cookie.sessionOnly);
     134            // FIXME: this should be ASSERT_FALSE. Investigating in <https://bugs.webkit.org/show_bug.cgi?id=171748>.
     135            ASSERT_TRUE(cookie.sessionOnly);
    135136        }
    136137    }
Note: See TracChangeset for help on using the changeset viewer.