Move various scripts from //third_party/WebKit/Tools/Scripts to //third_party/blink/tools
* bisect-test-ordering -> bisect_web_test_ordering
* debug-renderer -> debug_renderer
* debug-webkit-tests -> debug_web_tests
* print-stale-test-expectations-entries ->
print_stale_test_expectations_entries.py
* print-json-test-results -> print_web_test_json_results.py
* print-test-ordering -> print_web_test_ordering.py
* print-layout-test-times -> print_web_test_times.py
* print-layout-test-types -> print_web_test_types.py
* read-checksum-from-png -> read_checksum_from_png.py
* run-blink-httpd -> run_blink_httpd.py
* run-blink-websocketserver -> run_blink_websocketserver.py
* run-blink-wptserve -> run_blink_wptserve.py
* try-flag -> try_flag.py
* update-flaky-expectations -> update_flaky_expectations.py
Note that we decided to rename LayoutTests to web_tests.
https://groups.google.com/a/chromium.org/forum/#!msg/blink-dev/KKNbuzj-3HY/H8FWgtKrBgAJ
Bug: 829697
Change-Id: Ia3dd95f6b42e337deb79deb3e4524aded378d78f
Reviewed-on: https://chromium-review.googlesource.com/1018702
Reviewed-by: Quinten Yearsley <[email protected]>
Commit-Queue: Kent Tamura <[email protected]>
Cr-Commit-Position: refs/heads/master@{#552369}
diff --git a/docs/testing/layout_tests.md b/docs/testing/layout_tests.md
index 02e1251..f063a86c 100644
--- a/docs/testing/layout_tests.md
+++ b/docs/testing/layout_tests.md
@@ -356,8 +356,8 @@
To run the server manually to reproduce/debug a failure:
```bash
-cd src/third_party/WebKit/Tools/Scripts
-./run-blink-httpd
+cd src/third_party/blink/tools
+./run_blink_httpd.py
```
The layout tests will be served from `http://127.0.0.1:8000`. For example, to
@@ -368,7 +368,7 @@
tests will behave differently if you go to 127.0.0.1 vs localhost, so use
127.0.0.1.
-To kill the server, hit any key on the terminal where `run-blink-httpd` is
+To kill the server, hit any key on the terminal where `run_blink_httpd.py` is
running, or just use `taskkill` or the Task Manager on Windows, and `killall` or
Activity Monitor on MacOS.