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

Side by Side Diff: chrome/test/functional/PYAUTO_TESTS

Issue 7576027: Enabling GPU tests on Windows qa-bots. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 4 months 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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 30 matching lines...) Expand all
41 'codesign', 41 'codesign',
42 'content', 42 'content',
43 'cookies', 43 'cookies',
44 'crash_reporter', 44 'crash_reporter',
45 'databases', 45 'databases',
46 'downloads', 46 'downloads',
47 'execute_javascript', 47 'execute_javascript',
48 'extensions', 48 'extensions',
49 'find_in_page', 49 'find_in_page',
50 'flash', 50 'flash',
51 'gpu', 51 'gpu',
Nirnimesh 2011/08/05 01:13:05 Remove this
dyu1 2011/08/05 01:15:57 Done.
52 'history', 52 'history',
53 'https', 53 'https',
54 'imports', 54 'imports',
55 'infobars', 55 'infobars',
56 'instant', 56 'instant',
57 'navigation', 57 'navigation',
58 'notifications', 58 'notifications',
59 'ntp', 59 'ntp',
60 'omnibox', 60 'omnibox',
61 'passwords', 61 'passwords',
(...skipping 17 matching lines...) Expand all
79 '-autofill.AutofillTest.testFillProfileCrazyCharacters', 79 '-autofill.AutofillTest.testFillProfileCrazyCharacters',
80 # crbug.com/81271 80 # crbug.com/81271
81 '-autofill.AutofillTest.testMergeAggregatedProfilesWithSameAddress', 81 '-autofill.AutofillTest.testMergeAggregatedProfilesWithSameAddress',
82 '-autofill.AutofillTest.testProfilesNotMergedWhenNoMinAddressData', 82 '-autofill.AutofillTest.testProfilesNotMergedWhenNoMinAddressData',
83 # Browser crash when clearing browsing history and downloads together. 83 # Browser crash when clearing browsing history and downloads together.
84 # crbug.com/88128 84 # crbug.com/88128
85 '-browsing_data.BrowsingDataTest.testClearHistoryAndDownloads', 85 '-browsing_data.BrowsingDataTest.testClearHistoryAndDownloads',
86 '-browsing_data.BrowsingDataTest.testClearingAccuracy', 86 '-browsing_data.BrowsingDataTest.testClearingAccuracy',
87 # Turkish I problem. crbug.com/60638 87 # Turkish I problem. crbug.com/60638
88 '-find_in_page.FindMatchTests.testLocalizationAndCaseOrder', 88 '-find_in_page.FindMatchTests.testLocalizationAndCaseOrder',
89 # crbug.com/89279
90 '-gpu',
91 # crbug.com/87959 89 # crbug.com/87959
92 '-instant.InstantTest.testInstantLoadsFor100CharsLongQuery', 90 '-instant.InstantTest.testInstantLoadsFor100CharsLongQuery',
93 # crbug.com/83459 91 # crbug.com/83459
94 '-instant.InstantTest.testPreFetchInstantURLSetsNoCookies', 92 '-instant.InstantTest.testPreFetchInstantURLSetsNoCookies',
95 '-omnibox.OmniboxTest.testHistoryResult', # crbug.com/71715 93 '-omnibox.OmniboxTest.testHistoryResult', # crbug.com/71715
96 # crbug.com/91033 94 # crbug.com/91033
97 '-omnibox.OmniboxTest.testOmniboxSearchHistory', 95 '-omnibox.OmniboxTest.testOmniboxSearchHistory',
98 # crbug.com/82629 - real bug. 96 # crbug.com/82629 - real bug.
99 '-popups.PopupsTest.testPopupsLaunchUponBrowserBackButton', 97 '-popups.PopupsTest.testPopupsLaunchUponBrowserBackButton',
100 # crbug.com/47935 98 # crbug.com/47935
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 # ================================================== 179 # ==================================================
182 # Keychain popups make autofill/password tests difficult: crbug.com/49378 180 # Keychain popups make autofill/password tests difficult: crbug.com/49378
183 '-autofill', 181 '-autofill',
184 # codesign tests should run *after* signing. crbug.com/50481 182 # codesign tests should run *after* signing. crbug.com/50481
185 '-codesign', 183 '-codesign',
186 '-crash_reporter.CrashReporterTest.testRendererCrash', # crbug.com/69464 184 '-crash_reporter.CrashReporterTest.testRendererCrash', # crbug.com/69464
187 # crbug.com/75724 185 # crbug.com/75724
188 '-downloads.DownloadsTest.testDeclineDangerousDownload', 186 '-downloads.DownloadsTest.testDeclineDangerousDownload',
189 # crbug.com/75724 187 # crbug.com/75724
190 '-downloads.DownloadsTest.testSaveDangerousFile', 188 '-downloads.DownloadsTest.testSaveDangerousFile',
189 # crbug.com/89279
Nirnimesh 2011/08/05 01:13:05 No. remove it from here
dyu1 2011/08/05 01:15:57 Done.
190 '-gpu',
191 '-instant.InstantTest.testInstantNavigation', # crbug.com/69090 191 '-instant.InstantTest.testInstantNavigation', # crbug.com/69090
192 # crbug.com/66072 192 # crbug.com/66072
193 '-notifications.NotificationsTest.testNotificationOrderAfterClosingOne', 193 '-notifications.NotificationsTest.testNotificationOrderAfterClosingOne',
194 '-ntp.NTPTest.testLaunchAppNewWindow', # crbug.com/79812 194 '-ntp.NTPTest.testLaunchAppNewWindow', # crbug.com/79812
195 # crbug.com/70437 195 # crbug.com/70437
196 '-omnibox.OmniboxTest.testHistoryResult', 196 '-omnibox.OmniboxTest.testHistoryResult',
197 # crbug.com/91617 197 # crbug.com/91617
198 '-omnibox.OmniboxTest.testContentHistory', 198 '-omnibox.OmniboxTest.testContentHistory',
199 '-omnibox.OmniboxTest.testOmniboxSearchHistory', 199 '-omnibox.OmniboxTest.testOmniboxSearchHistory',
200 # Keychain popups make autofill/password tests difficult: crbug.com/49378 200 # Keychain popups make autofill/password tests difficult: crbug.com/49378
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
394 # crbug.com/70280 394 # crbug.com/70280
395 '-translate.TranslateTest.testSeveralLanguages', 395 '-translate.TranslateTest.testSeveralLanguages',
396 # crbug.com/85601 396 # crbug.com/85601
397 '-translate.TranslateTest.testAlwaysTranslateInIncognito', 397 '-translate.TranslateTest.testAlwaysTranslateInIncognito',
398 # This test fails due to crbug.com/85633 398 # This test fails due to crbug.com/85633
399 '-translate.TranslateTest.testSessionRestore', 399 '-translate.TranslateTest.testSessionRestore',
400 ], 400 ],
401 401
402 'win': [ 402 'win': [
403 'enterprise', 403 'enterprise',
404 # crbug.com/89279
Nirnimesh 2011/08/05 01:13:05 Remove this. Add 'gpu' here
dyu1 2011/08/05 01:15:57 Done.
405 '-gpu',
404 ], 406 ],
405 407
406 'mac': [ 408 'mac': [
407 ], 409 ],
408 410
409 'linux': [ 411 'linux': [
410 'enterprise', 412 'enterprise',
411 # Add back the omnibox tests excluded from the CONTINUOUS suite above 413 # Add back the omnibox tests excluded from the CONTINUOUS suite above
412 # because they do not produce omnibox results under virtual X on linux. 414 # because they do not produce omnibox results under virtual X on linux.
413 # crbug.com/85310 415 # crbug.com/85310
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
478 480
479 # HTML5 media functional tests. 481 # HTML5 media functional tests.
480 'AV_FUNC': { 482 'AV_FUNC': {
481 'linux': [ 483 'linux': [
482 'media.media_event_simple_action', 484 'media.media_event_simple_action',
483 'media.media_event_simple_test', 485 'media.media_event_simple_test',
484 'media.media_event_track', 486 'media.media_event_track',
485 ], 487 ],
486 }, 488 },
487 } 489 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698