• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2016 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 = 'ihf@chromium.org'
6NAME = 'component_UpdateFlash'
7PURPOSE = 'Verify the Adobe Flash binary can be updated via component update.'
8CRITERIA = 'Fail if a new binary cannot be downloaded and launched'
9TIME = 'MEDIUM'
10TEST_CATEGORY = 'Functional'
11TEST_CLASS = 'platform'
12TEST_TYPE = 'server'
13ATTRIBUTES = 'suite:bvt-perbuild'
14
15
16DOC = """
17This test downloads a Flash binary from Omaha, reboots the DUT, launches Chrome
18and verifies that Flash starts.
19"""
20
21def run(machine):
22    host = hosts.create_host(machine)
23    job.run_test('component_UpdateFlash', host=host)
24
25parallel_simple(run, machines)
26