Changeset 260559 in webkit


Ignore:
Timestamp:
Apr 23, 2020 12:11:24 AM (4 years ago)
Author:
Diego Pino Garcia
Message:

[GTK][WPE] Gardening, update baselines and test expectations
https://bugs.webkit.org/show_bug.cgi?id=210900

Results of tests are better than the general expected results,
so new GTK baselines are emitted or updated.

  • platform/gtk/TestExpectations:
  • platform/gtk/imported/w3c/web-platform-tests/fetch/api/basic/header-value-combining.any-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/fetch/api/basic/header-value-combining.any.worker-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/fetch/http-cache/cc-request-expected.txt: Updated.
  • platform/gtk/imported/w3c/web-platform-tests/fetch/nosniff/parsing-nosniff.window-expected.txt: Added.
  • platform/wpe/TestExpectations: Remove failure passing since r259703.
Location:
trunk/LayoutTests
Files:
4 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r260556 r260559  
     12020-04-23  Diego Pino Garcia  <dpino@igalia.com>
     2
     3        [GTK][WPE] Gardening, update baselines and test expectations
     4        https://bugs.webkit.org/show_bug.cgi?id=210900
     5
     6        Results of tests are better than the general expected results,
     7        so new GTK baselines are emitted or updated.
     8
     9        * platform/gtk/TestExpectations:
     10        * platform/gtk/imported/w3c/web-platform-tests/fetch/api/basic/header-value-combining.any-expected.txt: Added.
     11        * platform/gtk/imported/w3c/web-platform-tests/fetch/api/basic/header-value-combining.any.worker-expected.txt: Added.
     12        * platform/gtk/imported/w3c/web-platform-tests/fetch/http-cache/cc-request-expected.txt: Updated.
     13        * platform/gtk/imported/w3c/web-platform-tests/fetch/nosniff/parsing-nosniff.window-expected.txt: Added.
     14        * platform/wpe/TestExpectations: Remove failure passing since r259703.
     15
    1162020-04-22  Commit Queue  <commit-queue@webkit.org>
    217
  • trunk/LayoutTests/platform/gtk/TestExpectations

    r260555 r260559  
    44334433imported/w3c/web-platform-tests/css/css-lists/content-property/marker-text-matches-georgian.html [ ImageOnlyFailure ]
    44344434
    4435 webkit.org/b/193322 imported/w3c/web-platform-tests/fetch/api/basic/header-value-combining.any.html [ Failure ]
    4436 webkit.org/b/193322 imported/w3c/web-platform-tests/fetch/api/basic/header-value-combining.any.worker.html [ Failure ]
    44374435webkit.org/b/193322 imported/w3c/web-platform-tests/fetch/api/basic/request-headers-case.any.html [ Failure ]
    44384436webkit.org/b/193322 imported/w3c/web-platform-tests/fetch/api/basic/request-headers-case.any.worker.html [ Failure ]
    44394437webkit.org/b/193322 imported/w3c/web-platform-tests/fetch/content-type/script.window.html [ Failure ]
    4440 webkit.org/b/193322 imported/w3c/web-platform-tests/fetch/http-cache/cc-request.html [ Failure ]
    4441 webkit.org/b/193322 imported/w3c/web-platform-tests/fetch/nosniff/parsing-nosniff.window.html [ Failure ]
    44424438
    44434439webkit.org/b/193491 fast/flexbox/missing-repaint-when-flext-item-never-had-layout.html [ Failure ]
  • trunk/LayoutTests/platform/gtk/imported/w3c/web-platform-tests/fetch/http-cache/cc-request-expected.txt

    r216238 r260559  
    11
    2 PASS HTTP cache doesn't use aged but fresh response when request contains Cache-Control: max-age=0.
    3 FAIL HTTP cache doesn't use aged but fresh response when request contains Cache-Control: max-age=1. assert_equals: Response used expected 2 but got 1
    4 FAIL HTTP cache doesn't use fresh response with Age header when request contains Cache-Control: max-age that is greater than remaining freshness. assert_equals: Response used expected 2 but got 1
    5 PASS HTTP cache does use aged stale response when request contains Cache-Control: max-stale that permits its use.
    6 PASS HTTP cache does reuse stale response with Age header when request contains Cache-Control: max-stale that permits its use.
    7 FAIL HTTP cache doesn't reuse fresh response when request contains Cache-Control: min-fresh that wants it fresher. assert_equals: Response used expected 2 but got 1
    8 FAIL HTTP cache doesn't reuse fresh response with Age header when request contains Cache-Control: min-fresh that wants it fresher. assert_equals: Response used expected 2 but got 1
    9 PASS HTTP cache doesn't reuse fresh response when request contains Cache-Control: no-cache.
    10 PASS HTTP cache validates fresh response with Last-Modified when request contains Cache-Control: no-cache.
    11 PASS HTTP cache validates fresh response with ETag when request contains Cache-Control: no-cache.
    12 FAIL HTTP cache doesn't reuse fresh response when request contains Cache-Control: no-store. assert_equals: Response used expected 2 but got 1
    13 FAIL HTTP cache generates 504 status code when nothing is in cache and request contains Cache-Control: only-if-cached. assert_equals: Response status expected 504 but got 200
     2PASS HTTP cache doesn't use aged but fresh response when request contains Cache-Control: max-age=0
     3FAIL HTTP cache doesn't use aged but fresh response when request contains Cache-Control: max-age=1 assert_equals: Response 2 comes from cache expected 2 but got 1
     4FAIL HTTP cache doesn't use fresh response with Age header when request contains Cache-Control: max-age that is greater than remaining freshness assert_equals: Response 2 comes from cache expected 2 but got 1
     5PASS HTTP cache does use aged stale response when request contains Cache-Control: max-stale that permits its use
     6PASS HTTP cache does reuse stale response with Age header when request contains Cache-Control: max-stale that permits its use
     7FAIL HTTP cache doesn't reuse fresh response when request contains Cache-Control: min-fresh that wants it fresher assert_equals: Response 2 comes from cache expected 2 but got 1
     8FAIL HTTP cache doesn't reuse fresh response with Age header when request contains Cache-Control: min-fresh that wants it fresher assert_equals: Response 2 comes from cache expected 2 but got 1
     9PASS HTTP cache doesn't reuse fresh response when request contains Cache-Control: no-cache
     10PASS HTTP cache validates fresh response with Last-Modified when request contains Cache-Control: no-cache
     11PASS HTTP cache validates fresh response with ETag when request contains Cache-Control: no-cache
     12FAIL HTTP cache doesn't reuse fresh response when request contains Cache-Control: no-store assert_equals: Response 2 comes from cache expected 2 but got 1
     13FAIL HTTP cache generates 504 status code when nothing is in cache and request contains Cache-Control: only-if-cached assert_equals: Response 1 status is 200, not 504 expected 504 but got 200
    1414
  • trunk/LayoutTests/platform/wpe/TestExpectations

    r260506 r260559  
    13531353webkit.org/b/188041 http/wpt/crypto/unwrap-rsa-key-crash.any.worker.html [ Failure Pass ]
    13541354
    1355 webkit.org/b/193322 imported/w3c/web-platform-tests/fetch/http-cache/cc-request.html [ Failure ]
    1356 
    13571355webkit.org/b/202239 http/tests/cookies/cookie-with-multiple-level-path.html [ Pass Failure ]
    13581356
Note: See TracChangeset for help on using the changeset viewer.