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

Side by Side Diff: build/android/devil/utils/run_tests_helper.py

Issue 1314913009: [Android] Move some pylib modules into devil/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 3 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 unified diff | Download patch
« no previous file with comments | « build/android/devil/utils/reset_usb.py ('k') | build/android/devil/utils/timeout_retry.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """Helper functions common to native, java and host-driven test runners.""" 5 """Helper functions common to native, java and host-driven test runners."""
6 6
7 import logging 7 import logging
8 import sys 8 import sys
9 import time 9 import time
10 10
(...skipping 24 matching lines...) Expand all
35 log_level = logging.WARNING # Default. 35 log_level = logging.WARNING # Default.
36 if verbose_count == 1: 36 if verbose_count == 1:
37 log_level = logging.INFO 37 log_level = logging.INFO
38 elif verbose_count >= 2: 38 elif verbose_count >= 2:
39 log_level = logging.DEBUG 39 log_level = logging.DEBUG
40 logger = logging.getLogger() 40 logger = logging.getLogger()
41 logger.setLevel(log_level) 41 logger.setLevel(log_level)
42 custom_handler = logging.StreamHandler(sys.stdout) 42 custom_handler = logging.StreamHandler(sys.stdout)
43 custom_handler.setFormatter(CustomFormatter()) 43 custom_handler.setFormatter(CustomFormatter())
44 logging.getLogger().addHandler(custom_handler) 44 logging.getLogger().addHandler(custom_handler)
OLDNEW
« no previous file with comments | « build/android/devil/utils/reset_usb.py ('k') | build/android/devil/utils/timeout_retry.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698