| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 12 matching lines...) Expand all Loading... |
| 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 # This is the suite that gets run on 'Chromium' builds. | 27 # This is the suite that gets run on 'Chromium' builds. |
| 28 'CONTINUOUS': { | 28 'CONTINUOUS': { |
| 29 'all': [ | 29 'all': [ |
| 30 'autofill', | 30 'autofill', |
| 31 # crbug.com/83655 | 31 # crbug.com/83655 |
| 32 '-autofill.AutofillTest.testAutofillInvalid', | 32 '-autofill.AutofillTest.testAutofillInvalid', |
| 33 # crbug.com/83686 |
| 34 '-autofill.AutofillTest.testFillProfileCrazyCharacters', |
| 33 # crbug.com/77113 - M13 feature. | 35 # crbug.com/77113 - M13 feature. |
| 34 '-autofill.AutofillTest.testProfileWithEmailInOtherFieldNotSaved', | 36 '-autofill.AutofillTest.testProfileWithEmailInOtherFieldNotSaved', |
| 35 # crbug.com/81271 | 37 # crbug.com/81271 |
| 36 '-autofill.AutofillTest.testMergeAggregatedProfilesWithSameAddress', | 38 '-autofill.AutofillTest.testMergeAggregatedProfilesWithSameAddress', |
| 37 '-autofill.AutofillTest.testProfilesNotMergedWhenNoMinAddressData', | 39 '-autofill.AutofillTest.testProfilesNotMergedWhenNoMinAddressData', |
| 38 # crbug.com/83686 - M13 feature. | 40 # crbug.com/83686 - M13 feature. |
| 39 '-autofill.AutofillTest.testSegmentNumbersNotSupportedInDOMUI', | 41 '-autofill.AutofillTest.testSegmentNumbersNotSupportedInDOMUI', |
| 40 'bookmark_bar', | 42 'bookmark_bar', |
| 41 'bookmarks', | 43 'bookmarks', |
| 42 'browser', | 44 'browser', |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 # HTML5 media performance tests. | 254 # HTML5 media performance tests. |
| 253 'MEDIA_TESTS': { | 255 'MEDIA_TESTS': { |
| 254 'linux': [ | 256 'linux': [ |
| 255 'media.media_playbacktime', | 257 'media.media_playbacktime', |
| 256 'media.media_perf', | 258 'media.media_perf', |
| 257 'media.media_fps', | 259 'media.media_fps', |
| 258 'media.media_event_simple_test', | 260 'media.media_event_simple_test', |
| 259 ], | 261 ], |
| 260 }, | 262 }, |
| 261 } | 263 } |
| OLD | NEW |