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 fnmatch | 8 import fnmatch |
9 import glob | 9 import glob |
10 import logging | 10 import logging |
(...skipping 22 matching lines...) Expand all Loading... |
33 'third_party/WebKit/Source/platform/heap/BlinkHeapUnitTests.isolate', | 33 'third_party/WebKit/Source/platform/heap/BlinkHeapUnitTests.isolate', |
34 'breakpad_unittests': 'breakpad/breakpad_unittests.isolate', | 34 'breakpad_unittests': 'breakpad/breakpad_unittests.isolate', |
35 'cc_perftests': 'cc/cc_perftests.isolate', | 35 'cc_perftests': 'cc/cc_perftests.isolate', |
36 'components_unittests': 'components/components_unittests.isolate', | 36 'components_unittests': 'components/components_unittests.isolate', |
37 'content_browsertests': 'content/content_browsertests.isolate', | 37 'content_browsertests': 'content/content_browsertests.isolate', |
38 'content_unittests': 'content/content_unittests.isolate', | 38 'content_unittests': 'content/content_unittests.isolate', |
39 'media_perftests': 'media/media_perftests.isolate', | 39 'media_perftests': 'media/media_perftests.isolate', |
40 'media_unittests': 'media/media_unittests.isolate', | 40 'media_unittests': 'media/media_unittests.isolate', |
41 'net_unittests': 'net/net_unittests.isolate', | 41 'net_unittests': 'net/net_unittests.isolate', |
42 'sql_unittests': 'sql/sql_unittests.isolate', | 42 'sql_unittests': 'sql/sql_unittests.isolate', |
43 'ui_base_unittests': 'ui/base/ui_base_tests.isolate', | |
44 'ui_unittests': 'ui/base/ui_base_tests.isolate', | 43 'ui_unittests': 'ui/base/ui_base_tests.isolate', |
45 'unit_tests': 'chrome/unit_tests.isolate', | 44 'unit_tests': 'chrome/unit_tests.isolate', |
46 'webkit_unit_tests': | 45 'webkit_unit_tests': |
47 'third_party/WebKit/Source/web/WebKitUnitTests.isolate', | 46 'third_party/WebKit/Source/web/WebKitUnitTests.isolate', |
48 } | 47 } |
49 | 48 |
50 # Used for filtering large data deps at a finer grain than what's allowed in | 49 # Used for filtering large data deps at a finer grain than what's allowed in |
51 # isolate files since pushing deps to devices is expensive. | 50 # isolate files since pushing deps to devices is expensive. |
52 # Wildcards are allowed. | 51 # Wildcards are allowed. |
53 _DEPS_EXCLUSION_LIST = [ | 52 _DEPS_EXCLUSION_LIST = [ |
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
335 if test_options.gtest_filter: | 334 if test_options.gtest_filter: |
336 tests = unittest_util.FilterTestNames(tests, test_options.gtest_filter) | 335 tests = unittest_util.FilterTestNames(tests, test_options.gtest_filter) |
337 | 336 |
338 # Coalesce unit tests into a single test per device | 337 # Coalesce unit tests into a single test per device |
339 if test_options.suite_name != 'content_browsertests': | 338 if test_options.suite_name != 'content_browsertests': |
340 num_devices = len(devices) | 339 num_devices = len(devices) |
341 tests = [':'.join(tests[i::num_devices]) for i in xrange(num_devices)] | 340 tests = [':'.join(tests[i::num_devices]) for i in xrange(num_devices)] |
342 tests = [t for t in tests if t] | 341 tests = [t for t in tests if t] |
343 | 342 |
344 return (TestRunnerFactory, tests) | 343 return (TestRunnerFactory, tests) |
OLD | NEW |