OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 """Generates test runner factory and tests for GTests.""" | 5 """Generates test runner factory and tests for GTests.""" |
6 # pylint: disable=W0212 | 6 # pylint: disable=W0212 |
7 | 7 |
8 import logging | 8 import logging |
9 import os | 9 import os |
10 import sys | 10 import sys |
11 | 11 |
| 12 from devil.android import device_utils |
12 from pylib import constants | 13 from pylib import constants |
13 | |
14 from pylib.base import base_setup | 14 from pylib.base import base_setup |
15 from pylib.base import base_test_result | 15 from pylib.base import base_test_result |
16 from pylib.base import test_dispatcher | 16 from pylib.base import test_dispatcher |
17 from pylib.device import device_utils | |
18 from pylib.gtest import gtest_test_instance | 17 from pylib.gtest import gtest_test_instance |
19 from pylib.gtest import test_package_apk | 18 from pylib.gtest import test_package_apk |
20 from pylib.gtest import test_package_exe | 19 from pylib.gtest import test_package_exe |
21 from pylib.gtest import test_runner | 20 from pylib.gtest import test_runner |
22 | 21 |
23 sys.path.insert(0, | 22 sys.path.insert(0, |
24 os.path.join(constants.DIR_SOURCE_ROOT, 'build', 'util', 'lib', | 23 os.path.join(constants.DIR_SOURCE_ROOT, 'build', 'util', 'lib', |
25 'common')) | 24 'common')) |
26 import unittest_util # pylint: disable=F0401 | 25 import unittest_util # pylint: disable=F0401 |
27 | 26 |
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 if test_options.gtest_filter: | 220 if test_options.gtest_filter: |
222 tests = unittest_util.FilterTestNames(tests, test_options.gtest_filter) | 221 tests = unittest_util.FilterTestNames(tests, test_options.gtest_filter) |
223 | 222 |
224 # Coalesce unit tests into a single test per device | 223 # Coalesce unit tests into a single test per device |
225 if test_options.suite_name not in gtest_test_instance.BROWSER_TEST_SUITES: | 224 if test_options.suite_name not in gtest_test_instance.BROWSER_TEST_SUITES: |
226 num_devices = len(devices) | 225 num_devices = len(devices) |
227 tests = [':'.join(tests[i::num_devices]) for i in xrange(num_devices)] | 226 tests = [':'.join(tests[i::num_devices]) for i in xrange(num_devices)] |
228 tests = [t for t in tests if t] | 227 tests = [t for t in tests if t] |
229 | 228 |
230 return (TestRunnerFactory, tests) | 229 return (TestRunnerFactory, tests) |
OLD | NEW |