You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
787 B
25 lines
787 B
# Copyright 2020 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 = "jkop@google.com"
|
|
NAME = "dummy_SynchronousOffloadServer"
|
|
PURPOSE = "Verify tests can offload output from servers."
|
|
TIME = "SHORT"
|
|
TEST_CATEGORY = "General"
|
|
TEST_CLASS = "dummy"
|
|
TEST_TYPE = "server"
|
|
# Disable this test until it can be fixed: http://b/171572182
|
|
# ATTRIBUTES = "suite:offloads"
|
|
|
|
DOC = """
|
|
This test creates a file in $SYNCHRONOUS_OFFLOAD_DIR on the server and succeeds.
|
|
The task will fail only if the creation or offload of that file fails.
|
|
"""
|
|
|
|
def run(machine):
|
|
job.run_test('dummy_SynchronousOffloadServer',
|
|
host=hosts.create_host(machine))
|
|
|
|
parallel_simple(run, machines)
|