• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2015 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 = "Mussa Kiroga"
6NAME = "video_GlitchDetection_chameleon_h264_720p_collect_golden_images"
7PURPOSE = "Collects golden images to be used in image comparison video tests"
8CRITERIA = """
9
10"""
11TIME = "LONG"
12TEST_CATEGORY = "General"
13TEST_CLASS = "video"
14TEST_TYPE = "client"
15DEPENDENCIES = "video_glitch_detection"
16
17DOC = """
18Run this test to collect golden images for a certain device and  build. This
19test will use an H264 720p video to produce the images.
20
21This test is not intended to be run automatically in the lab. Instead it
22should be scheduled to run on a desired dut via autotest.
23
24Golden images can then be copied from the dut once the test is finished.
25
26"""
27host = next(iter(job.hosts))
28
29job.run_test('video_GlitchDetection',
30              source_path=('https://storage.googleapis.com/'
31              'chromiumos-test-assets-public/Shaka-Dash/720_60.mp4'),
32              codec='h264',
33              resolution='720p',
34              host=host,
35              args=args,
36              collect_only=True)