| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 # This test fails due to crbug.com/50706 | 47 # This test fails due to crbug.com/50706 |
| 48 '-translate.TranslateTest.testToggleTranslateOption' | 48 '-translate.TranslateTest.testToggleTranslateOption' |
| 49 ], | 49 ], |
| 50 | 50 |
| 51 'win': [ | 51 'win': [ |
| 52 # testBookmarkBarVisible fails on windows. crbug.com/42823 | 52 # testBookmarkBarVisible fails on windows. crbug.com/42823 |
| 53 '-bookmark_bar.BookmarkBarTest.testBookmarkBarVisible', | 53 '-bookmark_bar.BookmarkBarTest.testBookmarkBarVisible', |
| 54 # download test fails on official builder, thru buildbot only. | 54 # download test fails on official builder, thru buildbot only. |
| 55 # crbug.com/50481 | 55 # crbug.com/50481 |
| 56 '-downloads.DownloadsTest.testZip', | 56 '-downloads.DownloadsTest.testZip', |
| 57 # crbug.com/53149 | |
| 58 '-crash_reporter.CrashReporterTest.testRendererCrash', | |
| 59 ], | 57 ], |
| 60 | 58 |
| 61 'mac': [ | 59 'mac': [ |
| 62 # Keychain popups make password & autofill tests difficult. crbug.com/49378 | 60 # Keychain popups make password & autofill tests difficult. crbug.com/49378 |
| 63 '-passwords', | 61 '-passwords', |
| 64 '-autofill', | 62 '-autofill', |
| 65 # codesign tests should run *after* signing. crbug.com/50481 | 63 # codesign tests should run *after* signing. crbug.com/50481 |
| 66 '-codesign', | 64 '-codesign', |
| 67 '-content.ContentTest.testThreeWindows', # crbug.com/47457 | 65 '-content.ContentTest.testThreeWindows', # crbug.com/47457 |
| 68 ], | 66 ], |
| 69 | 67 |
| 70 'linux': [ # linux != chromeos | 68 'linux': [ # linux != chromeos |
| 71 '-omnibox', # http://crbug.com/44203 | 69 '-omnibox', # http://crbug.com/44203 |
| 72 '-browser.BrowserTest.testWindowResize', # crbug.com/44963 | 70 '-browser.BrowserTest.testWindowResize', # crbug.com/44963 |
| 73 '-content.ContentTest.testThreeWindows', # crbug.com/47457 | 71 '-content.ContentTest.testThreeWindows', # crbug.com/47457 |
| 74 ], | 72 ], |
| 75 | 73 |
| 76 # 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 |
| 77 # entries in the linux section above. | 75 # entries in the linux section above. |
| 78 'chromeos': [ | 76 'chromeos': [ |
| 79 # you cannot resize browser window on chromeos | 77 # you cannot resize browser window on chromeos |
| 80 '-browser.BrowserTest.testWindowResize', | 78 '-browser.BrowserTest.testWindowResize', |
| 81 ], | 79 ], |
| 82 } | 80 } |
| OLD | NEW |