| 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 22 matching lines...) Expand all Loading... |
| 33 'history', | 33 'history', |
| 34 'infobars', | 34 'infobars', |
| 35 'navigation', | 35 'navigation', |
| 36 'omnibox', | 36 'omnibox', |
| 37 'passwords', | 37 'passwords', |
| 38 'plugins', | 38 'plugins', |
| 39 'prefs', | 39 'prefs', |
| 40 'special_tabs', | 40 'special_tabs', |
| 41 'test_basic.SimpleTest.testCanOpenGoogle', | 41 'test_basic.SimpleTest.testCanOpenGoogle', |
| 42 'themes', | 42 'themes', |
| 43 'translate', |
| 43 ], | 44 ], |
| 44 | 45 |
| 45 'win': [ | 46 'win': [ |
| 46 # testBookmarkBarVisible fails on windows. crbug.com/42823 | 47 # testBookmarkBarVisible fails on windows. crbug.com/42823 |
| 47 '-bookmark_bar.BookmarkBarTest.testBookmarkBarVisible', | 48 '-bookmark_bar.BookmarkBarTest.testBookmarkBarVisible', |
| 48 ], | 49 ], |
| 49 | 50 |
| 50 'mac': [ | 51 'mac': [ |
| 51 # Keychain popups make password tests difficult. crbug.com/49378 | 52 # Keychain popups make password tests difficult. crbug.com/49378 |
| 52 '-passwords', | 53 '-passwords', |
| 53 ], | 54 ], |
| 54 | 55 |
| 55 'linux': [ # linux != chromeos | 56 'linux': [ # linux != chromeos |
| 56 '-omnibox', # http://crbug.com/44203 | 57 '-omnibox', # http://crbug.com/44203 |
| 57 '-browser.BrowserTest.testWindowResize', # crbug.com/44963 | 58 '-browser.BrowserTest.testWindowResize', # crbug.com/44963 |
| 58 '-content.ContentTest.testThreeWindows', # crbug.com/47457 | 59 '-content.ContentTest.testThreeWindows', # crbug.com/47457 |
| 59 ], | 60 ], |
| 60 | 61 |
| 61 # ChromeOS is linux, but note that this section does not include the | 62 # ChromeOS is linux, but note that this section does not include the |
| 62 # entries in the linux section above. | 63 # entries in the linux section above. |
| 63 'chromeos': [ | 64 'chromeos': [ |
| 64 # you cannot resize browser window on chromeos | 65 # you cannot resize browser window on chromeos |
| 65 '-browser.BrowserTest.testWindowResize', | 66 '-browser.BrowserTest.testWindowResize', |
| 66 ], | 67 ], |
| 67 } | 68 } |
| OLD | NEW |