1# Copyright (c) 2012 The Chromium OS Authors. All rights reserved. 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5AUTHOR = "Chrome OS Team" 6NAME = "power_VideoSuspend.multiformat" 7#TODO: move back to suite:kernel_daily_regression when test stable. 8ATTRIBUTES = "suite:experimental" 9TIME = "MEDIUM" 10TEST_CATEGORY = "Functional" 11TEST_CLASS = "power" 12TEST_TYPE = "client" 13 14DOC = """ 15Suspends the system with a video playing. 16 17This version of the test plays multiple formats (mp4, webm, ogg). 18""" 19 20videos = [ 21 'big_buck_bunny/big_buck_bunny_trailer_400p.mp4', 22 'big_buck_bunny/big_buck_bunny_trailer_400p.ogg', 23 'big_buck_bunny/big_buck_bunny_trailer_400p.webm', 24 'big_buck_bunny/big_buck_bunny_trailer_1080p.mp4', 25 'big_buck_bunny/big_buck_bunny_trailer_1080p.ogg', 26 'big_buck_bunny/big_buck_bunny_trailer_1080p.webm', 27] 28 29base_url = 'http://commondatastorage.googleapis.com/chromeos-test-public/' 30video_urls = [base_url + video for video in videos] 31 32job.add_sysinfo_logfile('/sys/kernel/debug/suspend_stats', on_every_test=True) 33job.run_test('power_VideoSuspend', video_urls=video_urls, tag='multiformat') 34