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 5 AUTHOR = "Chrome OS Team" 6 NAME = "power_VideoSuspend" 7 ATTRIBUTES = "suite:kernel_per-build_regression, suite:video" 8 SUITE = "kernel_per-build_regression, video" 9 TIME = "SHORT" 10 TEST_CATEGORY = "Functional" 11 TEST_CLASS = "power" 12 TEST_TYPE = "client" 13 14 DOC = """ 15 Suspends the system with a video playing. 16 """ 17 18 videos = ['big_buck_bunny/big_buck_bunny_trailer_400p.mp4'] 19 base_url = 'http://commondatastorage.googleapis.com/chromeos-test-public/' 20 video_urls = [base_url + video for video in videos] 21 22 job.add_sysinfo_logfile('/sys/kernel/debug/suspend_stats', on_every_test=True) 23 job.run_test('power_VideoSuspend', video_urls=video_urls) 24