| 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 10 matching lines...) Expand all Loading... |
| 21 # Names beginning with '@' will be treated as suite names and will be | 21 # Names beginning with '@' will be treated as suite names and will be |
| 22 # recursively expanded. | 22 # recursively expanded. |
| 23 | 23 |
| 24 { | 24 { |
| 25 # The CONTINUOUS suite includes tests that we expect to pass on a | 25 # The CONTINUOUS suite includes tests that we expect to pass on a |
| 26 # continuous builder. | 26 # continuous builder. |
| 27 'CONTINUOUS': { | 27 'CONTINUOUS': { |
| 28 'all': [ | 28 'all': [ |
| 29 'autofill', | 29 'autofill', |
| 30 # Not part of the continous build. | 30 # Not part of the continous build. |
| 31 # Used for testing Autofill crowdsourcing. | 31 # Used for testing Autofill Crowdsourcing. |
| 32 '-autofill.AutoFillTest.testAutofillCrowdSourcing', | 32 '-autofill.AutoFillTest.testAutofillCrowdsourcing', |
| 33 # Not part of the continous build. |
| 34 # Used for testing Autofill duplicate profile merging. |
| 35 '-autofill.AutoFillTest.testMergeDuplicateProfilesInAutofill', |
| 33 'bookmark_bar', | 36 'bookmark_bar', |
| 34 'bookmarks', | 37 'bookmarks', |
| 35 'browser', | 38 'browser', |
| 36 'browsing_data', | 39 'browsing_data', |
| 37 'codesign', | 40 'codesign', |
| 38 'content', | 41 'content', |
| 39 'cookies', | 42 'cookies', |
| 40 'crash_reporter', | 43 'crash_reporter', |
| 41 'databases', | 44 'databases', |
| 42 # crbug.com/66714 | 45 # crbug.com/66714 |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 'linux': [ | 184 'linux': [ |
| 182 ], | 185 ], |
| 183 | 186 |
| 184 'chromeos': [ | 187 'chromeos': [ |
| 185 # crosbug.com/6856 | 188 # crosbug.com/6856 |
| 186 '-translate.TranslateTest.testSessionRestore', | 189 '-translate.TranslateTest.testSessionRestore', |
| 187 '-translate.TranslateTest.testDownloadsNotTranslated', | 190 '-translate.TranslateTest.testDownloadsNotTranslated', |
| 188 ], | 191 ], |
| 189 } | 192 } |
| 190 } | 193 } |
| OLD | NEW |