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

Side by Side Diff: build/android/pylib/browsertests/dispatch.py

Issue 14882007: Android: support glob-style gtest filters with content browser tests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | 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) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 import fnmatch
5 import logging 6 import logging
6 import os 7 import os
7 8
8 from pylib import android_commands 9 from pylib import android_commands
9 from pylib import cmd_helper 10 from pylib import cmd_helper
10 from pylib import constants 11 from pylib import constants
11 from pylib import ports 12 from pylib import ports
12 from pylib.base import shard 13 from pylib.base import shard
13 from pylib.gtest import dispatch as gtest_dispatch 14 from pylib.gtest import dispatch as gtest_dispatch
14 from pylib.gtest import test_runner 15 from pylib.gtest import test_runner
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 options.test_arguments, 47 options.test_arguments,
47 options.timeout, 48 options.timeout,
48 options.cleanup_test_files, 49 options.cleanup_test_files,
49 options.tool, 50 options.tool,
50 options.build_type, 51 options.build_type,
51 options.webkit, 52 options.webkit,
52 constants.BROWSERTEST_TEST_PACKAGE_NAME, 53 constants.BROWSERTEST_TEST_PACKAGE_NAME,
53 constants.BROWSERTEST_TEST_ACTIVITY_NAME, 54 constants.BROWSERTEST_TEST_ACTIVITY_NAME,
54 constants.BROWSERTEST_COMMAND_LINE_FILE) 55 constants.BROWSERTEST_COMMAND_LINE_FILE)
55 56
56 # Get tests and split them up based on the number of devices. 57 # Get tests and split them up based on the number of devices.
58 all_enabled = gtest_dispatch.GetAllEnabledTests(RunnerFactory,
59 attached_devices)
57 if options.gtest_filter: 60 if options.gtest_filter:
58 all_tests = [t for t in options.gtest_filter.split(':') if t] 61 all_tests = _ApplyGtestFilter(all_enabled, options.gtest_filter)
59 else: 62 else:
60 all_enabled = gtest_dispatch.GetAllEnabledTests(RunnerFactory,
61 attached_devices)
62 all_tests = _FilterTests(all_enabled) 63 all_tests = _FilterTests(all_enabled)
63 64
64 # Run tests. 65 # Run tests.
65 # TODO(nileshagrawal): remove this abnormally long setup timeout once fewer 66 # TODO(nileshagrawal): remove this abnormally long setup timeout once fewer
66 # files are pushed to the devices for content_browsertests: crbug.com/138275 67 # files are pushed to the devices for content_browsertests: crbug.com/138275
67 setup_timeout = 20 * 60 # 20 minutes 68 setup_timeout = 20 * 60 # 20 minutes
68 test_results = shard.ShardAndRunTests(RunnerFactory, attached_devices, 69 test_results = shard.ShardAndRunTests(RunnerFactory, attached_devices,
69 all_tests, options.build_type, 70 all_tests, options.build_type,
70 setup_timeout=setup_timeout, 71 setup_timeout=setup_timeout,
71 test_timeout=None, 72 test_timeout=None,
72 num_retries=options.num_retries) 73 num_retries=options.num_retries)
73 report_results.LogFull( 74 report_results.LogFull(
74 results=test_results, 75 results=test_results,
75 test_type='Unit test', 76 test_type='Unit test',
76 test_package=constants.BROWSERTEST_SUITE_NAME, 77 test_package=constants.BROWSERTEST_SUITE_NAME,
77 build_type=options.build_type, 78 build_type=options.build_type,
78 flakiness_server=options.flakiness_dashboard_server) 79 flakiness_server=options.flakiness_dashboard_server)
79 report_results.PrintAnnotation(test_results) 80 report_results.PrintAnnotation(test_results)
80 81
81 def _FilterTests(all_enabled_tests): 82 def _FilterTests(all_enabled_tests):
82 """Filters out tests and fixtures starting with PRE_ and MANUAL_.""" 83 """Filters out tests and fixtures starting with PRE_ and MANUAL_."""
83 return [t for t in all_enabled_tests if _ShouldRunOnBot(t)] 84 return [t for t in all_enabled_tests if _ShouldRunOnBot(t)]
84 85
86 def _ApplyGtestFilter(all_enabled_tests, gtest_filter):
87 """Computes the result of applying the given gtest filter to the list of
bulach 2013/05/13 13:19:37 nit: one liner doctstring as title, then \n then a
Sami 2013/05/13 14:58:10 Done.
88 available tests.
89 """
90 filter_patterns = [t for t in gtest_filter.split(':') if t]
91 # Any test that matches a positive patterns but does not match any negative
92 # pattern should be returned.
93 result = set()
94 for pattern in filter_patterns:
95 if not pattern.startswith('-'):
96 result.update([t for t in all_enabled_tests
97 if fnmatch.fnmatch(t, pattern)])
98 for pattern in filter_patterns:
99 if pattern.startswith('-'):
100 result.difference_update([t for t in all_tests
101 if fnmatch.fnmatch(t, pattern[1:])])
102 return list(result)
103
85 def _ShouldRunOnBot(test): 104 def _ShouldRunOnBot(test):
86 fixture, case = test.split('.', 1) 105 fixture, case = test.split('.', 1)
87 if _StartsWith(fixture, case, "PRE_"): 106 if _StartsWith(fixture, case, "PRE_"):
88 return False 107 return False
89 if _StartsWith(fixture, case, "MANUAL_"): 108 if _StartsWith(fixture, case, "MANUAL_"):
90 return False 109 return False
91 return True 110 return True
92 111
93 def _StartsWith(a, b, prefix): 112 def _StartsWith(a, b, prefix):
94 return a.startswith(prefix) or b.startswith(prefix) 113 return a.startswith(prefix) or b.startswith(prefix)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698