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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/browser_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/browser_test.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/browser_test.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/browser_test.py
index 2608f57c7919b2a2f73fac609abc607b32415e92..88ca2a83cd567741c728c5765b4f6db90e25aea9 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/browser_test.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/browser_test.py
@@ -26,6 +26,7 @@
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+from webkitpy.common import exit_codes
from webkitpy.layout_tests.models import test_run_results
from webkitpy.layout_tests.port import browser_test_driver
from webkitpy.layout_tests.port import linux
@@ -62,7 +63,7 @@ class BrowserTestPortOverrides(object):
"""This function is meant to be a no-op since we don't want to actually
check for system dependencies.
"""
- return test_run_results.OK_EXIT_STATUS
+ return exit_codes.OK_EXIT_STATUS
def driver_name(self):
return 'browser_tests'

Powered by Google App Engine
This is Rietveld 408576698