Skip to content

Commit ac3af53

Browse files
qyearsleyCommit bot
qyearsley
authored and
Commit bot
committed
Update links to layout test documentation.
BUG=665494 Review-Url: https://codereview.chromium.org/2505683002 Cr-Commit-Position: refs/heads/master@{#432639}
1 parent 004905c commit ac3af53

File tree

7 files changed

+12
-14
lines changed

7 files changed

+12
-14
lines changed

docs/android_test_instructions.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -298,8 +298,7 @@ You might want to add stars `*` to each as a regular expression, e.g.
298298

299299
## Running Blink Layout Tests
300300

301-
See
302-
https://sites.google.com/a/chromium.org/dev/developers/testing/webkit-layout-tests
301+
See [Layout Tests](testing/layout_tests.md).
303302

304303
## Running GPU tests
305304

docs/how_to_extend_layout_test_framework.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ to help people who want to actually the framework to test whatever they want.
1212
## Background
1313

1414
Before you can start actually extending the framework, you should be familiar
15-
with how to use it. This wiki is basically all you need to learn how to use it
16-
http://www.chromium.org/developers/testing/webkit-layout-tests
15+
with how to use it. See the
16+
[layout tests documentation](testing/layout_tests.md).
1717

1818
## How to Extend the Framework
1919

@@ -129,7 +129,7 @@ Here are some of the functions that most likely need to be overridden.
129129
* `layout_tests_dir`
130130
* This tells the port where to look for all the and everything associated
131131
with them such as resources files.
132-
* By default it returns absolute path to the webkit tests.
132+
* By default it returns the absolute path to the layout tests directory.
133133
* If you are planning on running something in the chromium src/ directory,
134134
there are helper functions to allow you to return a path relative to the
135135
base of the chromium src directory.

docs/layout_tests_linux.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@
1010
`src/third_party/WebKit/LayoutTests/fast/`.
1111
1. When the tests finish, any unexpected results should be displayed.
1212

13-
See
14-
[Running WebKit Layout Tests](http://dev.chromium.org/developers/testing/webkit-layout-tests)
13+
See [Layout Tests](testing/layout_tests.md)
1514
for full documentation about set up and available options.
1615

1716
## Pixel Tests

media/tools/layout_tests/bug.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,8 @@ def __init__(self, bug_modifier):
2727
2828
Args:
2929
bug_modifier: a string representing a bug modifier. According to
30-
http://www.chromium.org/developers/testing/webkit-layout-tests/\
31-
testexpectations
32-
Bug identifiers are of the form "webkit.org/b/12345", "crbug.com/12345",
30+
//docs/testing/layout_test_expectations.md
31+
bug identifiers are of the form "webkit.org/b/12345", "crbug.com/12345",
3332
"code.google.com/p/v8/issues/detail?id=12345" or "Bug(username)"
3433
"""
3534
match = re.match('Bug\((\w+)\)$', bug_modifier)

media/tools/layout_tests/test_expectations.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
DEFAULT_TEST_EXPECTATIONS_LOCATION = (
1414
'http://src.chromium.org/blink/trunk/LayoutTests/TestExpectations')
1515

16-
# The following is from test expectation syntax. The detail can be found in
17-
# http://www.chromium.org/developers/testing/webkit-layout-tests#TOC-Test-Expectations
16+
# The following is from test expectation syntax.
17+
# See: //docs/testing/layout_test_expectations.md
1818
# <decision> ::== [SKIP] [WONTFIX] [SLOW]
1919
DECISION_NAMES = ['SKIP', 'WONTFIX', 'SLOW']
2020
# <config> ::== RELEASE | DEBUG

testing/android/docs/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
- [... run a gtest?](/testing/android/docs/todo.md)
1313
- [... run an instrumentation test?](/testing/android/docs/todo.md)
1414
- [... run a Robolectric test?](/testing/android/docs/todo.md)
15-
- [... run the blink layout tests?](https://sites.google.com/a/chromium.org/dev/developers/testing/webkit-layout-tests)
15+
- [... run the blink layout tests?](/testing/layout_tests.md)
1616
- [... run a telemetry test?](/testing/android/docs/todo.md)
1717
- **miscellaneous**
1818
- [... use code coverage for Java tests?](/build/android/docs/coverage.md)

third_party/WebKit/LayoutTests/SlowTests

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# See http://www.chromium.org/developers/testing/webkit-layout-tests/testexpectations for more information on this file.
1+
# See //docs/testing/layout_test_expectations.md
2+
# for more information on this file.
23

34
# This file should only mark tests as Slow. If they are failing in some other way, that listing should be in TestExpectations.
45
# Lines listed in both files will have the *union* of the expectations.

0 commit comments

Comments
 (0)