blob: b51a0d328d20e1f1e276f7119bb509733f94dc7a [file] [log] [blame]
# Copyright 2021 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.
from autotest_lib.server import autotest
from autotest_lib.server import test
class stub_ServerToClientPass(test.test):
"""
stub_ServerToClientPass test used to kick off dummy_Pass client test.
"""
version = 1
def run_once(self, host):
"""
Starting point of this test.
Note: base class sets host as self._host.
"""
self.host = host
self.autotest_client = autotest.Autotest(self.host)
self.autotest_client.run_test('dummy_Pass', check_client_result=True)