• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2020 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 = "jkop@google.com"
6NAME = "dummy_SynchronousOffloadServer"
7PURPOSE = "Verify tests can offload output from servers."
8TIME = "SHORT"
9TEST_CATEGORY = "General"
10TEST_CLASS = "dummy"
11TEST_TYPE = "server"
12
13DOC = """
14This test creates a file in $SYNCHRONOUS_OFFLOAD_DIR on the server and succeeds.
15The task will fail only if the creation or offload of that file fails.
16"""
17
18def run(machine):
19    job.run_test('dummy_SynchronousOffloadServer',
20                 host=hosts.create_host(machine))
21
22parallel_simple(run, machines)
23