Title: [221869] trunk
Revision
221869
Author
[email protected]
Date
2017-09-11 11:46:43 -0700 (Mon, 11 Sep 2017)

Log Message

Make the WPT entry point for LayoutTests/http/wpt more discoverable
https://bugs.webkit.org/show_bug.cgi?id=176494

Patch by Joseph Pecoraro <[email protected]> on 2017-09-11
Reviewed by Youenn Fablet.

LayoutTests/imported/w3c:

* web-platform-tests/WebKit/README.txt: Added.
Touch a file in a "WebKit" directory so that a "WebKit" link shows up
on the default <http://localhost:8800> listing page.

Tools:

* Scripts/webkitpy/layout_tests/servers/run_webkit_httpd.py:
(run_server):
Output a tip for how to access the http/wpt tests.

Modified Paths

Added Paths

Diff

Modified: trunk/LayoutTests/imported/w3c/ChangeLog (221868 => 221869)


--- trunk/LayoutTests/imported/w3c/ChangeLog	2017-09-11 18:43:13 UTC (rev 221868)
+++ trunk/LayoutTests/imported/w3c/ChangeLog	2017-09-11 18:46:43 UTC (rev 221869)
@@ -1,3 +1,14 @@
+2017-09-11  Joseph Pecoraro  <[email protected]>
+
+        Make the WPT entry point for LayoutTests/http/wpt more discoverable
+        https://bugs.webkit.org/show_bug.cgi?id=176494
+
+        Reviewed by Youenn Fablet.
+
+        * web-platform-tests/WebKit/README.txt: Added.
+        Touch a file in a "WebKit" directory so that a "WebKit" link shows up
+        on the default <http://localhost:8800> listing page.
+
 2017-09-09  Sam Weinig  <[email protected]>
 
         Finish off the FormData implementation

Added: trunk/LayoutTests/imported/w3c/web-platform-tests/WebKit/README.txt (0 => 221869)


--- trunk/LayoutTests/imported/w3c/web-platform-tests/WebKit/README.txt	                        (rev 0)
+++ trunk/LayoutTests/imported/w3c/web-platform-tests/WebKit/README.txt	2017-09-11 18:46:43 UTC (rev 221869)
@@ -0,0 +1,5 @@
+This directory is a placeholder so that "WebKit" shows up in the default
+directory listing of <http://localhost:8800>.
+
+Loading URLs like <http://localhost:8800/WebKit/> will load files from
+`LayoutTests/http/wpt` not `LayoutTests/imported/w3c/web-platform-tests`.

Modified: trunk/Tools/ChangeLog (221868 => 221869)


--- trunk/Tools/ChangeLog	2017-09-11 18:43:13 UTC (rev 221868)
+++ trunk/Tools/ChangeLog	2017-09-11 18:46:43 UTC (rev 221869)
@@ -1,3 +1,14 @@
+2017-09-11  Joseph Pecoraro  <[email protected]>
+
+        Make the WPT entry point for LayoutTests/http/wpt more discoverable
+        https://bugs.webkit.org/show_bug.cgi?id=176494
+
+        Reviewed by Youenn Fablet.
+
+        * Scripts/webkitpy/layout_tests/servers/run_webkit_httpd.py:
+        (run_server):
+        Output a tip for how to access the http/wpt tests.
+
 2017-09-11  Mark Lam  <[email protected]>
 
         Turn on exception scope verification for JSC tests.

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/servers/run_webkit_httpd.py (221868 => 221869)


--- trunk/Tools/Scripts/webkitpy/layout_tests/servers/run_webkit_httpd.py	2017-09-11 18:43:13 UTC (rev 221868)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/servers/run_webkit_httpd.py	2017-09-11 18:46:43 UTC (rev 221869)
@@ -69,6 +69,7 @@
 
     if options.web_platform_test_server:
         print "Starting web-platform-tests server on <%s> and <%s>" % (web_platform_test_server.base_http_url(port), web_platform_test_server.base_https_url(port))
+        print "WebKit http/wpt tests are accessible at <%s>" % (web_platform_test_server.base_http_url(port) + "WebKit/")
         port.start_web_platform_test_server()
 
     if options.httpd_server:
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to