Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(118)

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/layout_tests_server.py

Issue 2496063002: Rename WebKitFinder -> BlinkFinder. (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/layout_tests_server.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/layout_tests_server.py b/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/layout_tests_server.py
index 880907b93fceacfc8e0f0cfffe1857929a3477fd..0869a9547dc2080f5c98556f56a5f841e722f075 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/layout_tests_server.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/layout_tests_server.py
@@ -33,7 +33,7 @@ import BaseHTTPServer
import subprocess
from subprocess import STDOUT
-from webkitpy.common.webkit_finder import WebKitFinder
+from webkitpy.common.blink_finder import BlinkFinder
from webkitpy.common.system.filesystem import FileSystem
from webkitpy.tool.servers.reflection_handler import ReflectionHandler
@@ -54,8 +54,8 @@ class LayoutTestsServerHTTPRequestHandler(ReflectionHandler):
for each in json_data['tests']:
test_list += each + ' '
filesystem = FileSystem()
- webkit_finder = WebKitFinder(filesystem)
- script_dir = webkit_finder.path_from_webkit_base('Tools', 'Scripts')
+ blink_finder = BlinkFinder(filesystem)
+ script_dir = blink_finder.path_from_blink_base('Tools', 'Scripts')
executable_path = script_dir + "/run-webkit-tests"
cmd = "python " + executable_path + " --no-show-results "
cmd += test_list

Powered by Google App Engine
This is Rietveld 408576698