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

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

Issue 1154373005: Introduce WPTServe for running W3C Blink Layout tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix nits, refactor, license header update. 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/executive.py
diff --git a/Tools/Scripts/webkitpy/common/system/executive.py b/Tools/Scripts/webkitpy/common/system/executive.py
index 5d53ab9b57c7e849a5d100ec5cd8be2064d0061b..d76f385b7cc56ef50da277f38507743afe66b92f 100644
--- a/Tools/Scripts/webkitpy/common/system/executive.py
+++ b/Tools/Scripts/webkitpy/common/system/executive.py
@@ -86,6 +86,7 @@ class ScriptError(Exception):
class Executive(object):
PIPE = subprocess.PIPE
STDOUT = subprocess.STDOUT
+ DEVNULL = open(os.devnull, 'wb')
def _should_close_fds(self):
# We need to pass close_fds=True to work around Python bug #2320

Powered by Google App Engine
This is Rietveld 408576698