22 lines
609 B
Plaintext
22 lines
609 B
Plaintext
# Copyright (c) 2009 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
AUTHOR = "Chrome OS Team"
|
|
NAME = "example_UnitTestServer"
|
|
TIME = "SHORT"
|
|
TEST_CATEGORY = "Benchmark"
|
|
TEST_CLASS = "example"
|
|
TEST_TYPE = "server"
|
|
|
|
DOC = """
|
|
This test executes an example unit test and then scrapes the code coverage
|
|
information for processing on the server
|
|
"""
|
|
|
|
def run_unit_test(machine):
|
|
host = hosts.create_host(machine)
|
|
job.run_test("example_UnitTestServer", host=host)
|
|
|
|
parallel_simple(run_unit_test, machines)
|