| 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 11 matching lines...) Expand all Loading... |
| 22 { | 22 { |
| 23 'all': [ | 23 'all': [ |
| 24 'autofill', | 24 'autofill', |
| 25 'bookmark_bar', | 25 'bookmark_bar', |
| 26 'bookmarks', | 26 'bookmarks', |
| 27 'browser', | 27 'browser', |
| 28 'browsing_data', | 28 'browsing_data', |
| 29 'codesign', | 29 'codesign', |
| 30 'content', | 30 'content', |
| 31 'cookies', | 31 'cookies', |
| 32 'crash_reporter', |
| 32 'downloads', | 33 'downloads', |
| 33 'history', | 34 'history', |
| 34 'infobars', | 35 'infobars', |
| 35 'navigation', | 36 'navigation', |
| 36 'omnibox', | 37 'omnibox', |
| 37 'passwords', | 38 'passwords', |
| 38 'plugins', | 39 'plugins', |
| 39 'prefs', | 40 'prefs', |
| 40 'special_tabs', | 41 'special_tabs', |
| 41 'test_basic.SimpleTest.testCanOpenGoogle', | 42 'test_basic.SimpleTest.testCanOpenGoogle', |
| (...skipping 28 matching lines...) Expand all Loading... |
| 70 '-content.ContentTest.testThreeWindows', # crbug.com/47457 | 71 '-content.ContentTest.testThreeWindows', # crbug.com/47457 |
| 71 ], | 72 ], |
| 72 | 73 |
| 73 # ChromeOS is linux, but note that this section does not include the | 74 # ChromeOS is linux, but note that this section does not include the |
| 74 # entries in the linux section above. | 75 # entries in the linux section above. |
| 75 'chromeos': [ | 76 'chromeos': [ |
| 76 # you cannot resize browser window on chromeos | 77 # you cannot resize browser window on chromeos |
| 77 '-browser.BrowserTest.testWindowResize', | 78 '-browser.BrowserTest.testWindowResize', |
| 78 ], | 79 ], |
| 79 } | 80 } |
| OLD | NEW |