0

Fix typo in file name

CfTTestExpecations should be CfTTestExpectations.

Bug: None
Change-Id: I218241f24b9f336fe4abc2b84046c2214d6ce9c5
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6427221
Reviewed-by: Jonathan Lee <jonathanjlee@google.com>
Reviewed-by: Dirk Pranke <dpranke@google.com>
Commit-Queue: Weizhong Xia <weizhong@google.com>
Cr-Commit-Position: refs/heads/main@{#1442539}
This commit is contained in:
Weizhong Xia
2025-04-03 18:53:43 -07:00
committed by Chromium LUCI CQ
parent b13e080d6c
commit d51f840417
4 changed files with 5 additions and 5 deletions
BUILD.gn
docs/testing
third_party/blink
tools
blinkpy
web_tests
stale_expectation_removal
web_tests

@ -1162,7 +1162,7 @@ if (use_blink && !is_cronet_build) {
_common_web_test_options += [ _common_web_test_options += [
"--additional-expectations", "--additional-expectations",
"@WrappedPath(" + "@WrappedPath(" +
rebase_path("//third_party/blink/web_tests/CfTTestExpecations", rebase_path("//third_party/blink/web_tests/CfTTestExpectations",
root_out_dir) + ")", root_out_dir) + ")",
] ]
} }
@ -1516,7 +1516,7 @@ if (use_blink && !is_cronet_build) {
data += [ "//third_party/blink/web_tests/ASANExpectations" ] data += [ "//third_party/blink/web_tests/ASANExpectations" ]
} }
if (is_chrome_for_testing) { if (is_chrome_for_testing) {
data += [ "//third_party/blink/web_tests/CfTTestExpecations" ] data += [ "//third_party/blink/web_tests/CfTTestExpectations" ]
} }
if (is_msan) { if (is_msan) {
data += [ "//third_party/blink/web_tests/MSANExpectations" ] data += [ "//third_party/blink/web_tests/MSANExpectations" ]
@ -1695,7 +1695,7 @@ if (use_blink && !is_cronet_build) {
"//third_party/blink/renderer/build/scripts/", "//third_party/blink/renderer/build/scripts/",
"//third_party/blink/tools/", "//third_party/blink/tools/",
"//third_party/blink/web_tests/ASANExpectations", "//third_party/blink/web_tests/ASANExpectations",
"//third_party/blink/web_tests/CfTTestExpecations", "//third_party/blink/web_tests/CfTTestExpectations",
"//third_party/blink/web_tests/FlagExpectations/", "//third_party/blink/web_tests/FlagExpectations/",
"//third_party/blink/web_tests/LeakExpectations", "//third_party/blink/web_tests/LeakExpectations",
"//third_party/blink/web_tests/MSANExpectations", "//third_party/blink/web_tests/MSANExpectations",

@ -213,7 +213,7 @@ files. You can follow the steps below for easier review.
about WPT coverage for Chrome. about WPT coverage for Chrome.
* [ASANExpectations](../../third_party/blink/web_tests/ASANExpectations): * [ASANExpectations](../../third_party/blink/web_tests/ASANExpectations):
Tests that fail under ASAN. Tests that fail under ASAN.
* [CfTTestExpecations](../../third_party/blink/web_tests/CfTTestExpecations): * [CfTTestExpectations](../../third_party/blink/web_tests/CfTTestExpectations):
Tests that fail under Chrome for Testing Tests that fail under Chrome for Testing
* [LeakExpectations](../../third_party/blink/web_tests/LeakExpectations): * [LeakExpectations](../../third_party/blink/web_tests/LeakExpectations):
Tests that have memory leaks under the leak checker. Tests that have memory leaks under the leak checker.

@ -15,7 +15,7 @@ MAIN_EXPECTATION_FILE = os.path.join(constants.WEB_TEST_ROOT_DIR,
TOP_LEVEL_EXPECTATION_FILES = { TOP_LEVEL_EXPECTATION_FILES = {
'ASANExpectations', 'ASANExpectations',
'CfTTestExpecations', 'CfTTestExpectations',
'LeakExpectations', 'LeakExpectations',
'MSANExpectations', 'MSANExpectations',
# NeverFixTests omitted since they're never expected to be # NeverFixTests omitted since they're never expected to be