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

Side by Side Diff: chrome/test/functional/PYAUTO_TESTS

Issue 6410134: Use named automation interface to control primary chrome on ChromeOS (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: nit Created 9 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 # This file lists the pyauto tests that run as a part of the functional test 5 # This file lists the pyauto tests that run as a part of the functional test
6 # suite. 6 # suite.
7 # 7 #
8 # Tests can be enabled on a per-platform basis. Tests not listed here will 8 # Tests can be enabled on a per-platform basis. Tests not listed here will
9 # not be run. 9 # not be run.
10 # 10 #
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 ], 193 ],
194 194
195 'linux': [ 195 'linux': [
196 ], 196 ],
197 197
198 'chromeos': [ 198 'chromeos': [
199 # crosbug.com/6856 199 # crosbug.com/6856
200 '-translate.TranslateTest.testSessionRestore', 200 '-translate.TranslateTest.testSessionRestore',
201 '-translate.TranslateTest.testDownloadsNotTranslated', 201 '-translate.TranslateTest.testDownloadsNotTranslated',
202 ], 202 ],
203 } 203 },
204
205 # The PRIMARY_CHROME suite uses named automation interface to control
206 # primary chrome on ChromeOS.
207 'PRIMARY_CHROME': {
208 'all': [
209 ],
210
211 'win': [
212 ],
213
214 'mac': [
215 ],
216
217 'linux': [
218 ],
219
220 'chromeos': [
221 'chromeos_basic',
222 ],
223 },
224
204 } 225 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698