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

Side by Side Diff: gpu/gpu_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 | « extensions/extensions_browsertests.isolate ('k') | media/media_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 'conditions': [ 5 'conditions': [
6 ['OS=="linux" or OS=="mac" or OS=="win"', { 6 ['OS=="linux" or OS=="mac" or OS=="win"', {
7 'variables': { 7 'variables': {
8 'files': [ 8 'files': [
9 '../testing/test_env.py', 9 '../testing/test_env.py',
10 '<(PRODUCT_DIR)/gpu_unittests<(EXECUTABLE_SUFFIX)', 10 '<(PRODUCT_DIR)/gpu_unittests<(EXECUTABLE_SUFFIX)',
11 ], 11 ],
12 }, 12 },
13 }], 13 }],
14 ['OS=="linux"', { 14 ['OS=="linux"', {
15 'variables': { 15 'variables': {
16 'command': [ 16 'command': [
17 '../testing/xvfb.py', 17 '../testing/xvfb.py',
18 '<(PRODUCT_DIR)', 18 '<(PRODUCT_DIR)',
19 '<(PRODUCT_DIR)/gpu_unittests', 19 '<(PRODUCT_DIR)/gpu_unittests',
20 '--brave-new-test-launcher', 20 '--brave-new-test-launcher',
21 '--test-launcher-bot-mode', 21 '--test-launcher-bot-mode',
22 '--asan=<(asan)', 22 '--asan=<(asan)',
23 '--lsan=<(lsan)', 23 '--lsan=<(lsan)',
24 '--msan=<(msan)',
25 '--tsan=<(tsan)',
24 ], 26 ],
25 'files': [ 27 'files': [
26 '../testing/xvfb.py', 28 '../testing/xvfb.py',
27 '<(PRODUCT_DIR)/xdisplaycheck', 29 '<(PRODUCT_DIR)/xdisplaycheck',
28 ], 30 ],
29 }, 31 },
30 }], 32 }],
31 ['OS=="mac"', { 33 ['OS=="mac"', {
32 'variables': { 34 'variables': {
33 'command': [ 35 'command': [
34 '../testing/test_env.py', 36 '../testing/test_env.py',
35 '<(PRODUCT_DIR)/gpu_unittests', 37 '<(PRODUCT_DIR)/gpu_unittests',
36 '--brave-new-test-launcher', 38 '--brave-new-test-launcher',
37 '--test-launcher-bot-mode', 39 '--test-launcher-bot-mode',
38 '--asan=<(asan)', 40 '--asan=<(asan)',
39 '--lsan=<(lsan)', 41 '--lsan=<(lsan)',
42 '--msan=<(msan)',
43 '--tsan=<(tsan)',
40 ], 44 ],
41 }, 45 },
42 }], 46 }],
43 ['OS=="win"', { 47 ['OS=="win"', {
44 'variables': { 48 'variables': {
45 'command': [ 49 'command': [
46 '../testing/test_env.py', 50 '../testing/test_env.py',
47 '<(PRODUCT_DIR)/gpu_unittests.exe', 51 '<(PRODUCT_DIR)/gpu_unittests.exe',
48 '--brave-new-test-launcher', 52 '--brave-new-test-launcher',
49 '--test-launcher-bot-mode', 53 '--test-launcher-bot-mode',
50 '--asan=<(asan)', 54 '--asan=<(asan)',
51 '--lsan=<(lsan)', 55 '--lsan=<(lsan)',
56 '--msan=<(msan)',
57 '--tsan=<(tsan)',
52 ], 58 ],
53 }, 59 },
54 }], 60 }],
55 ['OS=="win" and (fastbuild==0 or fastbuild==1)', { 61 ['OS=="win" and (fastbuild==0 or fastbuild==1)', {
56 'variables': { 62 'variables': {
57 'files': [ 63 'files': [
58 '<(PRODUCT_DIR)/gpu_unittests.exe.pdb', 64 '<(PRODUCT_DIR)/gpu_unittests.exe.pdb',
59 ], 65 ],
60 }, 66 },
61 }], 67 }],
62 ], 68 ],
63 'includes': [ 69 'includes': [
64 '../base/base.isolate', 70 '../base/base.isolate',
65 ], 71 ],
66 } 72 }
OLDNEW
« no previous file with comments | « extensions/extensions_browsertests.isolate ('k') | media/media_unittests.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698