• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Lint as: python2, python3
2# Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
6import os, time
7from autotest_lib.client.bin import test
8from autotest_lib.client.common_lib import error, utils
9
10class platform_DaemonsRespawn(test.test):
11    version = 1
12
13
14    def run_once(self):
15        utils.system_output(self.bindir + "/test_respawn.sh",
16                            retain_output=True)
17