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

Unified Diff: Tools/Scripts/webkitpy/common/system/filesystem.py

Issue 1154373005: Introduce WPTServe for running W3C Blink Layout tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: USE 127.0.0.1 as WPT host. Skip checking subdomains. Created 5 years, 6 months 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: Tools/Scripts/webkitpy/common/system/filesystem.py
diff --git a/Tools/Scripts/webkitpy/common/system/filesystem.py b/Tools/Scripts/webkitpy/common/system/filesystem.py
index fdf43473b1384eab7642d710ba827835e8ecbb9f..a8c3814b4c50578a77580829412c4f997f7afc45 100644
--- a/Tools/Scripts/webkitpy/common/system/filesystem.py
+++ b/Tools/Scripts/webkitpy/common/system/filesystem.py
@@ -46,6 +46,7 @@ class FileSystem(object):
or relative."""
sep = os.sep
pardir = os.pardir
+ pathsep = os.pathsep
Dirk Pranke 2015/06/15 23:41:48 You shouldn't need this (see other comments).
burnik 2015/06/16 09:24:34 Done.
def abspath(self, path):
return os.path.abspath(path)

Powered by Google App Engine
This is Rietveld 408576698