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 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
456 ], | 456 ], |
457 }, | 457 }, |
458 | 458 |
459 # ChromeOS login tests. | 459 # ChromeOS login tests. |
460 'CHROMEOS_LOGIN': { | 460 'CHROMEOS_LOGIN': { |
461 'chromeos': [ | 461 'chromeos': [ |
462 'chromeos_login', | 462 'chromeos_login', |
463 ], | 463 ], |
464 }, | 464 }, |
465 | 465 |
| 466 # ChromeOS performance tests. |
| 467 'CHROMEOS_PERF': { |
| 468 'chromeos': [ |
| 469 'perf', |
| 470 ], |
| 471 }, |
| 472 |
466 # HTML5 media performance tests. | 473 # HTML5 media performance tests. |
467 'AV_PERF': { | 474 'AV_PERF': { |
468 'linux': [ | 475 'linux': [ |
469 'media.media_playbacktime', | 476 'media.media_playbacktime', |
470 'media.media_perf', | 477 'media.media_perf', |
471 'media.media_fps', | 478 'media.media_fps', |
472 ], | 479 ], |
473 }, | 480 }, |
474 | 481 |
475 # HTML5 media functional tests. | 482 # HTML5 media functional tests. |
476 'AV_FUNC': { | 483 'AV_FUNC': { |
477 'linux': [ | 484 'linux': [ |
478 'media.media_event_simple_action', | 485 'media.media_event_simple_action', |
479 'media.media_event_simple_test', | 486 'media.media_event_simple_test', |
480 'media.media_event_track', | 487 'media.media_event_track', |
481 ], | 488 ], |
482 }, | 489 }, |
483 } | 490 } |
OLD | NEW |