OLD | NEW |
---|---|
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 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
371 'chromeos': [ | 371 'chromeos': [ |
372 ], | 372 ], |
373 }, | 373 }, |
374 | 374 |
375 # The FULL suite includes CONTINUOUS, and more. | 375 # The FULL suite includes CONTINUOUS, and more. |
376 # This the suite that gets run on 'Google Chrome' builds. | 376 # This the suite that gets run on 'Google Chrome' builds. |
377 'FULL': { | 377 'FULL': { |
378 'all': [ | 378 'all': [ |
379 '@CONTINUOUS', | 379 '@CONTINUOUS', |
380 'translate', | 380 'translate', |
381 'nacl_sdk', | |
dennis_jeffrey
2011/08/15 16:26:07
Please move this up one line to keep the list in a
chrisphan
2011/08/15 17:01:16
Done.
| |
381 | 382 |
382 # ================================================== | 383 # ================================================== |
383 # Disabled tests that need to be investigated/fixed. | 384 # Disabled tests that need to be investigated/fixed. |
384 # ================================================== | 385 # ================================================== |
385 # This test fails due to crbug.com/35485 | 386 # This test fails due to crbug.com/35485 |
386 '-translate.TranslateTest.testBarNotVisibleOnSSLErrorPage', | 387 '-translate.TranslateTest.testBarNotVisibleOnSSLErrorPage', |
387 # This test fails due to crbug.com/50706 | 388 # This test fails due to crbug.com/50706 |
388 '-translate.TranslateTest.testToggleTranslateOption', | 389 '-translate.TranslateTest.testToggleTranslateOption', |
389 # crbug.com/70280 | 390 # crbug.com/70280 |
390 '-translate.TranslateTest.testSeveralLanguages', | 391 '-translate.TranslateTest.testSeveralLanguages', |
391 # crbug.com/85601 | 392 # crbug.com/85601 |
392 '-translate.TranslateTest.testAlwaysTranslateInIncognito', | 393 '-translate.TranslateTest.testAlwaysTranslateInIncognito', |
393 # This test fails due to crbug.com/85633 | 394 # This test fails due to crbug.com/85633 |
394 '-translate.TranslateTest.testSessionRestore', | 395 '-translate.TranslateTest.testSessionRestore', |
396 # crbug.com/91553 | |
397 '-nacl_sdk.NaClSDKTest.testVerifyNaClPlugin', | |
398 '-nacl_sdk.NaClSDKTest.testVerifyPrereleaseGallery', | |
395 ], | 399 ], |
396 | 400 |
397 'win': [ | 401 'win': [ |
398 'enterprise', | 402 'enterprise', |
399 'gpu', | 403 'gpu', |
400 ], | 404 ], |
401 | 405 |
402 'mac': [ | 406 'mac': [ |
403 ], | 407 ], |
404 | 408 |
(...skipping 15 matching lines...) Expand all Loading... | |
420 'omnibox.OmniboxTest.testSuggestPref', | 424 'omnibox.OmniboxTest.testSuggestPref', |
421 | 425 |
422 # ================================================== | 426 # ================================================== |
423 # Disabled tests that need to be investigated/fixed. | 427 # Disabled tests that need to be investigated/fixed. |
424 # ================================================== | 428 # ================================================== |
425 # crbug.com/83459 | 429 # crbug.com/83459 |
426 '-instant.InstantTest.testPreFetchInstantURLSetsNoCookies', | 430 '-instant.InstantTest.testPreFetchInstantURLSetsNoCookies', |
427 ], | 431 ], |
428 | 432 |
429 'chromeos': [ | 433 'chromeos': [ |
434 # =========================== | |
435 # Permanently-disabled tests. | |
436 # =========================== | |
437 # No NaCl support on ChromeOS. | |
438 '-nacl_sdk', | |
439 | |
430 # ================================================== | 440 # ================================================== |
431 # Disabled tests that need to be investigated/fixed. | 441 # Disabled tests that need to be investigated/fixed. |
432 # ================================================== | 442 # ================================================== |
433 # Session restore not working with PyAuto. crosbug.com/12648 | 443 # Session restore not working with PyAuto. crosbug.com/12648 |
434 '-translate.TranslateTest.testSessionRestore', | 444 '-translate.TranslateTest.testSessionRestore', |
435 # Deal with i18n chars. crosbug.com/12639 | 445 # Deal with i18n chars. crosbug.com/12639 |
436 '-translate.TranslateTest.testDownloadsNotTranslated', | 446 '-translate.TranslateTest.testDownloadsNotTranslated', |
437 ], | 447 ], |
438 }, | 448 }, |
439 | 449 |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
474 | 484 |
475 # HTML5 media functional tests. | 485 # HTML5 media functional tests. |
476 'AV_FUNC': { | 486 'AV_FUNC': { |
477 'linux': [ | 487 'linux': [ |
478 'media.media_event_simple_action', | 488 'media.media_event_simple_action', |
479 'media.media_event_simple_test', | 489 'media.media_event_simple_test', |
480 'media.media_event_track', | 490 'media.media_event_track', |
481 ], | 491 ], |
482 }, | 492 }, |
483 } | 493 } |
OLD | NEW |