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
5from autotest_lib.server import autotest
6from autotest_lib.server import test
7
8
9class stub_ServerToClientPass(test.test):
10    """
11    stub_ServerToClientPass test used to kick off stub_Pass client test.
12
13    """
14    version = 1
15
16    def run_once(self, host):
17        """
18        Starting point of this test.
19
20        Note: base class sets host as self._host.
21
22        """
23        self.host = host
24
25        self.autotest_client = autotest.Autotest(self.host)
26        self.autotest_client.run_test('stub_Pass', check_client_result=True)
27