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

Side by Side Diff: components/components_unittests.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 | « components/components_browsertests.isolate ('k') | content/content_browsertests.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 'conditions': [ 5 'conditions': [
6 ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', { 6 ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', {
7 'variables': { 7 'variables': {
8 'files': [ 8 'files': [
9 'test/data/', 9 'test/data/',
10 '<(PRODUCT_DIR)/components_unittests_resources.pak', 10 '<(PRODUCT_DIR)/components_unittests_resources.pak',
(...skipping 11 matching lines...) Expand all
22 ['OS=="linux"', { 22 ['OS=="linux"', {
23 'variables': { 23 'variables': {
24 'command': [ 24 'command': [
25 '../testing/xvfb.py', 25 '../testing/xvfb.py',
26 '<(PRODUCT_DIR)', 26 '<(PRODUCT_DIR)',
27 '<(PRODUCT_DIR)/components_unittests', 27 '<(PRODUCT_DIR)/components_unittests',
28 '--brave-new-test-launcher', 28 '--brave-new-test-launcher',
29 '--test-launcher-bot-mode', 29 '--test-launcher-bot-mode',
30 '--asan=<(asan)', 30 '--asan=<(asan)',
31 '--lsan=<(lsan)', 31 '--lsan=<(lsan)',
32 '--msan=<(msan)',
33 '--tsan=<(tsan)',
32 ], 34 ],
33 'files': [ 35 'files': [
34 '../testing/xvfb.py', 36 '../testing/xvfb.py',
35 '<(PRODUCT_DIR)/libffmpegsumo.so', 37 '<(PRODUCT_DIR)/libffmpegsumo.so',
36 '<(PRODUCT_DIR)/libosmesa.so', 38 '<(PRODUCT_DIR)/libosmesa.so',
37 '<(PRODUCT_DIR)/xdisplaycheck', 39 '<(PRODUCT_DIR)/xdisplaycheck',
38 ], 40 ],
39 }, 41 },
40 }], 42 }],
41 ['OS=="mac"', { 43 ['OS=="mac"', {
42 'variables': { 44 'variables': {
43 'command': [ 45 'command': [
44 '../testing/test_env.py', 46 '../testing/test_env.py',
45 '<(PRODUCT_DIR)/components_unittests', 47 '<(PRODUCT_DIR)/components_unittests',
46 '--brave-new-test-launcher', 48 '--brave-new-test-launcher',
47 '--test-launcher-bot-mode', 49 '--test-launcher-bot-mode',
48 '--asan=<(asan)', 50 '--asan=<(asan)',
49 '--lsan=<(lsan)', 51 '--lsan=<(lsan)',
52 '--msan=<(msan)',
53 '--tsan=<(tsan)',
50 ], 54 ],
51 'files': [ 55 'files': [
52 '<(PRODUCT_DIR)/ffmpegsumo.so', 56 '<(PRODUCT_DIR)/ffmpegsumo.so',
53 '<(PRODUCT_DIR)/osmesa.so', 57 '<(PRODUCT_DIR)/osmesa.so',
54 ], 58 ],
55 }, 59 },
56 }], 60 }],
57 ['OS=="win"', { 61 ['OS=="win"', {
58 'variables': { 62 'variables': {
59 'command': [ 63 'command': [
60 '../testing/test_env.py', 64 '../testing/test_env.py',
61 '<(PRODUCT_DIR)/components_unittests.exe', 65 '<(PRODUCT_DIR)/components_unittests.exe',
62 '--brave-new-test-launcher', 66 '--brave-new-test-launcher',
63 '--test-launcher-bot-mode', 67 '--test-launcher-bot-mode',
64 '--asan=<(asan)', 68 '--asan=<(asan)',
65 '--lsan=<(lsan)', 69 '--lsan=<(lsan)',
70 '--msan=<(msan)',
71 '--tsan=<(tsan)',
66 ], 72 ],
67 'files': [ 73 'files': [
68 '../chrome/test/data/policy/', 74 '../chrome/test/data/policy/',
69 '<(PRODUCT_DIR)/ffmpegsumo.dll', 75 '<(PRODUCT_DIR)/ffmpegsumo.dll',
70 '<(PRODUCT_DIR)/osmesa.dll', 76 '<(PRODUCT_DIR)/osmesa.dll',
71 ], 77 ],
72 }, 78 },
73 }], 79 }],
74 ['OS=="win" and (fastbuild==0 or fastbuild==1)', { 80 ['OS=="win" and (fastbuild==0 or fastbuild==1)', {
75 'variables': { 81 'variables': {
76 'files': [ 82 'files': [
77 '<(PRODUCT_DIR)/components_unittests.exe.pdb', 83 '<(PRODUCT_DIR)/components_unittests.exe.pdb',
78 ], 84 ],
79 }, 85 },
80 }], 86 }],
81 ], 87 ],
82 'includes': [ 88 'includes': [
83 '../base/base.isolate', 89 '../base/base.isolate',
84 ], 90 ],
85 } 91 }
OLDNEW
« no previous file with comments | « components/components_browsertests.isolate ('k') | content/content_browsertests.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698