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

Side by Side Diff: media/media_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 | « gpu/gpu_unittests.isolate ('k') | net/net_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 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 'includes': [ 5 'includes': [
6 '../base/base.isolate', 6 '../base/base.isolate',
7 ], 7 ],
8 'conditions': [ 8 'conditions': [
9 ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', { 9 ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', {
10 'variables': { 10 'variables': {
(...skipping 13 matching lines...) Expand all
24 ['OS=="linux"', { 24 ['OS=="linux"', {
25 'variables': { 25 'variables': {
26 'command': [ 26 'command': [
27 '../testing/xvfb.py', 27 '../testing/xvfb.py',
28 '<(PRODUCT_DIR)', 28 '<(PRODUCT_DIR)',
29 '<(PRODUCT_DIR)/media_unittests', 29 '<(PRODUCT_DIR)/media_unittests',
30 '--brave-new-test-launcher', 30 '--brave-new-test-launcher',
31 '--test-launcher-bot-mode', 31 '--test-launcher-bot-mode',
32 '--asan=<(asan)', 32 '--asan=<(asan)',
33 '--lsan=<(lsan)', 33 '--lsan=<(lsan)',
34 '--msan=<(msan)',
35 '--tsan=<(tsan)',
34 ], 36 ],
35 'files': [ 37 'files': [
36 '../testing/xvfb.py', 38 '../testing/xvfb.py',
37 '<(PRODUCT_DIR)/libffmpegsumo.so', 39 '<(PRODUCT_DIR)/libffmpegsumo.so',
38 '<(PRODUCT_DIR)/xdisplaycheck', 40 '<(PRODUCT_DIR)/xdisplaycheck',
39 ], 41 ],
40 }, 42 },
41 }], 43 }],
42 ['OS=="mac"', { 44 ['OS=="mac"', {
43 'variables': { 45 'variables': {
44 'command': [ 46 'command': [
45 '../testing/test_env.py', 47 '../testing/test_env.py',
46 '<(PRODUCT_DIR)/media_unittests', 48 '<(PRODUCT_DIR)/media_unittests',
47 '--brave-new-test-launcher', 49 '--brave-new-test-launcher',
48 '--test-launcher-bot-mode', 50 '--test-launcher-bot-mode',
49 '--asan=<(asan)', 51 '--asan=<(asan)',
50 '--lsan=<(lsan)', 52 '--lsan=<(lsan)',
53 '--msan=<(msan)',
54 '--tsan=<(tsan)',
51 ], 55 ],
52 'files': [ 56 'files': [
53 '<(PRODUCT_DIR)/ffmpegsumo.so', 57 '<(PRODUCT_DIR)/ffmpegsumo.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)/media_unittests.exe', 65 '<(PRODUCT_DIR)/media_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 '<(PRODUCT_DIR)/ffmpegsumo.dll', 74 '<(PRODUCT_DIR)/ffmpegsumo.dll',
69 ], 75 ],
70 }, 76 },
71 }], 77 }],
72 ['OS=="win" and (fastbuild==0 or fastbuild==1)', { 78 ['OS=="win" and (fastbuild==0 or fastbuild==1)', {
73 'variables': { 79 'variables': {
74 'files': [ 80 'files': [
75 '<(PRODUCT_DIR)/media_unittests.exe.pdb', 81 '<(PRODUCT_DIR)/media_unittests.exe.pdb',
76 ], 82 ],
77 }, 83 },
78 }], 84 }],
79 ], 85 ],
80 } 86 }
OLDNEW
« no previous file with comments | « gpu/gpu_unittests.isolate ('k') | net/net_unittests.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698