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

Side by Side Diff: build/android/pylib/gtest/setup.py

Issue 596113002: Make isolated tests work with asan (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: android Created 6 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 | « base/base.isolate ('k') | build/isolate.gypi » ('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 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 'remap', 106 'remap',
107 '--isolate', isolate_abs_path, 107 '--isolate', isolate_abs_path,
108 '--isolated', isolated_abs_path, 108 '--isolated', isolated_abs_path,
109 '--outdir', constants.ISOLATE_DEPS_DIR, 109 '--outdir', constants.ISOLATE_DEPS_DIR,
110 110
111 '--path-variable', 'DEPTH', constants.DIR_SOURCE_ROOT, 111 '--path-variable', 'DEPTH', constants.DIR_SOURCE_ROOT,
112 '--path-variable', 'PRODUCT_DIR', constants.GetOutDirectory(), 112 '--path-variable', 'PRODUCT_DIR', constants.GetOutDirectory(),
113 113
114 '--config-variable', 'OS', 'android', 114 '--config-variable', 'OS', 'android',
115 '--config-variable', 'CONFIGURATION_NAME', constants.GetBuildType(), 115 '--config-variable', 'CONFIGURATION_NAME', constants.GetBuildType(),
116 '--config-variable', 'asan', '0',
116 '--config-variable', 'chromeos', '0', 117 '--config-variable', 'chromeos', '0',
117 '--config-variable', 'component', 'static_library', 118 '--config-variable', 'component', 'static_library',
118 '--config-variable', 'fastbuild', '0', 119 '--config-variable', 'fastbuild', '0',
119 '--config-variable', 'icu_use_data_file_flag', '1', 120 '--config-variable', 'icu_use_data_file_flag', '1',
120 # TODO(maruel): This may not be always true. 121 # TODO(maruel): This may not be always true.
121 '--config-variable', 'target_arch', 'arm', 122 '--config-variable', 'target_arch', 'arm',
122 '--config-variable', 'use_openssl', '0', 123 '--config-variable', 'use_openssl', '0',
123 ] 124 ]
124 assert not cmd_helper.RunCmd(isolate_cmd) 125 assert not cmd_helper.RunCmd(isolate_cmd)
125 126
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 if test_options.gtest_filter: 335 if test_options.gtest_filter:
335 tests = unittest_util.FilterTestNames(tests, test_options.gtest_filter) 336 tests = unittest_util.FilterTestNames(tests, test_options.gtest_filter)
336 337
337 # Coalesce unit tests into a single test per device 338 # Coalesce unit tests into a single test per device
338 if test_options.suite_name != 'content_browsertests': 339 if test_options.suite_name != 'content_browsertests':
339 num_devices = len(devices) 340 num_devices = len(devices)
340 tests = [':'.join(tests[i::num_devices]) for i in xrange(num_devices)] 341 tests = [':'.join(tests[i::num_devices]) for i in xrange(num_devices)]
341 tests = [t for t in tests if t] 342 tests = [t for t in tests if t]
342 343
343 return (TestRunnerFactory, tests) 344 return (TestRunnerFactory, tests)
OLDNEW
« no previous file with comments | « base/base.isolate ('k') | build/isolate.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698