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

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

Issue 7617014: Allow pyauto performance tests in perf.py to run as an autotest. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed last minor comment. 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
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 445 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698