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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/test.py

Issue 2800853003: webkitpy: Unify the exit status codes. (Closed)
Patch Set: webkitpy: Unify the exit status codes. Created 3 years, 8 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: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/test.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/test.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/test.py
index 37394d89cb0d3d9c1e584500384f39af2bcf2338..43dce0d7baa2a21a51a4e5b8e3e7259c26063e99 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/test.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/test.py
@@ -29,6 +29,7 @@
import base64
import time
+from webkitpy.common import exit_codes
from webkitpy.common.system.crash_logs import CrashLogs
from webkitpy.layout_tests.models import test_run_results
from webkitpy.layout_tests.models.test_configuration import TestConfiguration
@@ -439,10 +440,10 @@ class TestPort(Port):
return 1
def check_build(self, needs_http, printer):
- return test_run_results.OK_EXIT_STATUS
+ return exit_codes.OK_EXIT_STATUS
def check_sys_deps(self, needs_http):
- return test_run_results.OK_EXIT_STATUS
+ return exit_codes.OK_EXIT_STATUS
def default_configuration(self):
return 'Release'

Powered by Google App Engine
This is Rietveld 408576698