1# Copyright 2021 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 = 'dbeckett' 6NAME = 'stub_ServerToClientPass' 7TIME = 'SHORT' 8TEST_CATEGORY = 'General' 9TEST_CLASS = 'stub' 10TEST_TYPE = 'server' 11ATTRIBUTES = 'suite:infra_qual, suite:py3-beta, suite:cft-beta' 12PY_VERSION = 3 13 14DOC = """ 15Stub to verify a client test can be kicked off and passes from a server test. 16""" 17 18 19def run(machine): 20 host = hosts.create_host(machine) 21 job.run_test('stub_ServerToClientPass', host=host) 22 23parallel_simple(run, machines) 24