| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |