Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(216)

Side by Side Diff: functional/PYAUTO_TESTS

Issue 4669008: Addes Two tests to Passwords.py... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/chrome/test/functional/
Patch Set: '' Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | functional/passwords.py » ('j') | functional/passwords.py » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 # crbug.com/64664 67 # crbug.com/64664
68 '-databases.DatabasesTest.testReloadActiveTab', 68 '-databases.DatabasesTest.testReloadActiveTab',
69 # Some download test fails on win official builder, only thru buildbot when 69 # Some download test fails on win official builder, only thru buildbot when
70 # downloading the small zip file. 70 # downloading the small zip file.
71 # crbug.com/50481, crbug.com/54942 71 # crbug.com/50481, crbug.com/54942
72 '-downloads.DownloadsTest.testZip', 72 '-downloads.DownloadsTest.testZip',
73 '-downloads.DownloadsTest.testRemoveDownload', 73 '-downloads.DownloadsTest.testRemoveDownload',
74 '-prefs.PrefsTest.testDownloadDirPref', 74 '-prefs.PrefsTest.testDownloadDirPref',
75 # crbug.com/64269 75 # crbug.com/64269
76 '-passwords.PasswordTest.testDisplayAndSavePasswordInfobar', 76 '-passwords.PasswordTest.testDisplayAndSavePasswordInfobar',
77 # crbug.com/63033
78 '-passwords.PasswordTest.testInfoBarDisappearByNavigatingPage',
77 ], 79 ],
78 80
79 'mac': [ 81 'mac': [
80 # Keychain popups make password & autofill tests difficult. crbug.com/49378 82 # Keychain popups make password & autofill tests difficult. crbug.com/49378
81 '-passwords', 83 '-passwords',
82 '-autofill', 84 '-autofill',
83 # codesign tests should run *after* signing. crbug.com/50481 85 # codesign tests should run *after* signing. crbug.com/50481
84 '-codesign', 86 '-codesign',
85 '-content.ContentTest.testThreeWindows', # crbug.com/47457 87 '-content.ContentTest.testThreeWindows', # crbug.com/47457
86 '-downloads.DownloadsTest.testSaveDangerousFile', # crbug.com/57875 88 '-downloads.DownloadsTest.testSaveDangerousFile', # crbug.com/57875
87 ], 89 ],
88 90
89 'linux': [ # linux != chromeos 91 'linux': [ # linux != chromeos
90 '-browser.BrowserTest.testWindowResize', # crbug.com/44963 92 '-browser.BrowserTest.testWindowResize', # crbug.com/44963
91 '-browser.BrowserTest.testFlashLoadsAfterKill', # crbug.com/63039 93 '-browser.BrowserTest.testFlashLoadsAfterKill', # crbug.com/63039
92 '-content.ContentTest.testThreeWindows', # crbug.com/47457 94 '-content.ContentTest.testThreeWindows', # crbug.com/47457
93 # crbug.com/64664 95 # crbug.com/64664
94 '-databases.DatabasesTest.testReloadActiveTab', 96 '-databases.DatabasesTest.testReloadActiveTab',
95 # crbug.com/64269 97 # crbug.com/64269
96 '-passwords.PasswordTest.testDisplayAndSavePasswordInfobar', 98 '-passwords.PasswordTest.testDisplayAndSavePasswordInfobar',
99 # crbug.com/63033
100 '-passwords.PasswordTest.testInfoBarDisappearByNavigatingPage',
97 ], 101 ],
98 102
99 # ChromeOS is linux, but note that this section does not include the 103 # ChromeOS is linux, but note that this section does not include the
100 # entries in the linux section above. 104 # entries in the linux section above.
101 'chromeos': [ 105 'chromeos': [
102 # you cannot resize browser window on chromeos 106 # you cannot resize browser window on chromeos
103 '-browser.BrowserTest.testWindowResize', 107 '-browser.BrowserTest.testWindowResize',
104 # Importer tests are invalid on chromeos since chrome is the only browser 108 # Importer tests are invalid on chromeos since chrome is the only browser
105 '-imports', 109 '-imports',
106 110
(...skipping 17 matching lines...) Expand all
124 '-downloads.DownloadsTest.testBigZip', 128 '-downloads.DownloadsTest.testBigZip',
125 '-downloads.DownloadsTest.testCancelDownload', 129 '-downloads.DownloadsTest.testCancelDownload',
126 '-downloads.DownloadsTest.testPauseAndResume', 130 '-downloads.DownloadsTest.testPauseAndResume',
127 '-translate.TranslateTest.testDownloadsNotTranslated', 131 '-translate.TranslateTest.testDownloadsNotTranslated',
128 # crosbug.com/9499 132 # crosbug.com/9499
129 '-crash_reporter.CrashReporterTest.testRendererCrash', 133 '-crash_reporter.CrashReporterTest.testRendererCrash',
130 # crbug.com/64269 134 # crbug.com/64269
131 '-passwords.PasswordTest.testDisplayAndSavePasswordInfobar', 135 '-passwords.PasswordTest.testDisplayAndSavePasswordInfobar',
132 ], 136 ],
133 } 137 }
OLDNEW
« no previous file with comments | « no previous file | functional/passwords.py » ('j') | functional/passwords.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698