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

Side by Side Diff: chrome/unit_tests.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/interactive_ui_tests.isolate ('k') | components/components_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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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=="win" or OS=="mac"', { 6 ['OS=="android" or OS=="linux" or OS=="win" or OS=="mac"', {
7 'variables': { 7 'variables': {
8 'files': [ 8 'files': [
9 '<(PRODUCT_DIR)/test_data/chrome/browser/resources/google_now/', 9 '<(PRODUCT_DIR)/test_data/chrome/browser/resources/google_now/',
10 '<(PRODUCT_DIR)/test_data/chrome/browser/resources/print_preview/', 10 '<(PRODUCT_DIR)/test_data/chrome/browser/resources/print_preview/',
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 ['OS=="linux"', { 42 ['OS=="linux"', {
43 'variables': { 43 'variables': {
44 'command': [ 44 'command': [
45 '../testing/xvfb.py', 45 '../testing/xvfb.py',
46 '<(PRODUCT_DIR)', 46 '<(PRODUCT_DIR)',
47 '<(PRODUCT_DIR)/unit_tests<(EXECUTABLE_SUFFIX)', 47 '<(PRODUCT_DIR)/unit_tests<(EXECUTABLE_SUFFIX)',
48 '--brave-new-test-launcher', 48 '--brave-new-test-launcher',
49 '--test-launcher-bot-mode', 49 '--test-launcher-bot-mode',
50 '--asan=<(asan)', 50 '--asan=<(asan)',
51 '--lsan=<(lsan)', 51 '--lsan=<(lsan)',
52 '--msan=<(msan)',
53 '--tsan=<(tsan)',
52 ], 54 ],
53 'files': [ 55 'files': [
54 '../testing/xvfb.py', 56 '../testing/xvfb.py',
55 '<(PRODUCT_DIR)/libffmpegsumo.so', 57 '<(PRODUCT_DIR)/libffmpegsumo.so',
56 '<(PRODUCT_DIR)/libosmesa.so', 58 '<(PRODUCT_DIR)/libosmesa.so',
57 '<(PRODUCT_DIR)/locales/fr.pak', 59 '<(PRODUCT_DIR)/locales/fr.pak',
58 ], 60 ],
59 }, 61 },
60 }], 62 }],
61 ['OS=="linux" and use_ozone==0', { 63 ['OS=="linux" and use_ozone==0', {
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 }], 97 }],
96 ['OS=="mac" or OS=="win"', { 98 ['OS=="mac" or OS=="win"', {
97 'variables': { 99 'variables': {
98 'command': [ 100 'command': [
99 '../testing/test_env.py', 101 '../testing/test_env.py',
100 '<(PRODUCT_DIR)/unit_tests<(EXECUTABLE_SUFFIX)', 102 '<(PRODUCT_DIR)/unit_tests<(EXECUTABLE_SUFFIX)',
101 '--brave-new-test-launcher', 103 '--brave-new-test-launcher',
102 '--test-launcher-bot-mode', 104 '--test-launcher-bot-mode',
103 '--asan=<(asan)', 105 '--asan=<(asan)',
104 '--lsan=<(lsan)', 106 '--lsan=<(lsan)',
107 '--msan=<(msan)',
108 '--tsan=<(tsan)',
105 ], 109 ],
106 }, 110 },
107 }], 111 }],
108 ['OS=="win"', { 112 ['OS=="win"', {
109 'variables': { 113 'variables': {
110 'files': [ 114 'files': [
111 '../ppapi/lib/gl/include/KHR/', 115 '../ppapi/lib/gl/include/KHR/',
112 '../skia/ext/data/', 116 '../skia/ext/data/',
113 '../ui/base/glib/', 117 '../ui/base/glib/',
114 '<(PRODUCT_DIR)/blacklist_test_dll_1.dll', 118 '<(PRODUCT_DIR)/blacklist_test_dll_1.dll',
(...skipping 24 matching lines...) Expand all
139 '<(PRODUCT_DIR)/test_data/chrome/browser/resources/chromeos/', 143 '<(PRODUCT_DIR)/test_data/chrome/browser/resources/chromeos/',
140 ], 144 ],
141 }, 145 },
142 }], 146 }],
143 ], 147 ],
144 'includes': [ 148 'includes': [
145 '../base/base.isolate', 149 '../base/base.isolate',
146 '../gin/v8.isolate', 150 '../gin/v8.isolate',
147 ], 151 ],
148 } 152 }
OLDNEW
« no previous file with comments | « chrome/interactive_ui_tests.isolate ('k') | components/components_browsertests.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698