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

Side by Side Diff: components/components_browsertests.isolate

Issue 895923002: Support MSan/TSan in test isolation and test_env.py (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix error Created 5 years, 10 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 | « chrome/unit_tests.isolate ('k') | components/components_unittests.isolate » ('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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 'includes': [ 5 'includes': [
6 '../base/base.isolate', 6 '../base/base.isolate',
7 '../gin/v8.isolate', 7 '../gin/v8.isolate',
8 ], 8 ],
9 'conditions': [ 9 'conditions': [
10 ['OS=="linux" or OS=="mac" or OS=="win"', { 10 ['OS=="linux" or OS=="mac" or OS=="win"', {
(...skipping 10 matching lines...) Expand all
21 ['OS=="linux"', { 21 ['OS=="linux"', {
22 'variables': { 22 'variables': {
23 'command': [ 23 'command': [
24 '../testing/xvfb.py', 24 '../testing/xvfb.py',
25 '<(PRODUCT_DIR)', 25 '<(PRODUCT_DIR)',
26 '<(PRODUCT_DIR)/components_browsertests', 26 '<(PRODUCT_DIR)/components_browsertests',
27 '--brave-new-test-launcher', 27 '--brave-new-test-launcher',
28 '--test-launcher-bot-mode', 28 '--test-launcher-bot-mode',
29 '--asan=<(asan)', 29 '--asan=<(asan)',
30 '--lsan=<(lsan)', 30 '--lsan=<(lsan)',
31 '--msan=<(msan)',
32 '--tsan=<(tsan)',
31 ], 33 ],
32 'files': [ 34 'files': [
33 '../testing/xvfb.py', 35 '../testing/xvfb.py',
34 '<(PRODUCT_DIR)/libosmesa.so', 36 '<(PRODUCT_DIR)/libosmesa.so',
35 ], 37 ],
36 }, 38 },
37 }], 39 }],
38 ['OS=="linux" and use_ozone==0', { 40 ['OS=="linux" and use_ozone==0', {
39 'variables': { 41 'variables': {
40 'files': [ 42 'files': [
41 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)', 43 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)',
42 ], 44 ],
43 }, 45 },
44 }], 46 }],
45 ['OS=="mac" or OS=="win"', { 47 ['OS=="mac" or OS=="win"', {
46 'variables': { 48 'variables': {
47 'command': [ 49 'command': [
48 '../testing/test_env.py', 50 '../testing/test_env.py',
49 '<(PRODUCT_DIR)/components_browsertests<(EXECUTABLE_SUFFIX)', 51 '<(PRODUCT_DIR)/components_browsertests<(EXECUTABLE_SUFFIX)',
50 '--brave-new-test-launcher', 52 '--brave-new-test-launcher',
51 '--test-launcher-bot-mode', 53 '--test-launcher-bot-mode',
52 '--asan=<(asan)', 54 '--asan=<(asan)',
53 '--lsan=<(lsan)', 55 '--lsan=<(lsan)',
56 '--msan=<(msan)',
57 '--tsan=<(tsan)',
54 ], 58 ],
55 }, 59 },
56 }], 60 }],
57 ['OS=="mac"', { 61 ['OS=="mac"', {
58 'variables': { 62 'variables': {
59 'files': [ 63 'files': [
60 '<(PRODUCT_DIR)/Content Shell.app/', 64 '<(PRODUCT_DIR)/Content Shell.app/',
61 ], 65 ],
62 }, 66 },
63 }], 67 }],
64 ], 68 ],
65 } 69 }
OLDNEW
« no previous file with comments | « chrome/unit_tests.isolate ('k') | components/components_unittests.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698