Index: client/site_tests/suite_Factory/control.reboot |
diff --git a/client/site_tests/suite_Factory/control.reboot b/client/site_tests/suite_Factory/control.reboot |
deleted file mode 100644 |
index 86833bb4a91a94c34773f590bc61d7f55ff48c2a..0000000000000000000000000000000000000000 |
--- a/client/site_tests/suite_Factory/control.reboot |
+++ /dev/null |
@@ -1,35 +0,0 @@ |
-# Copyright (c) 2010 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. |
- |
-AUTHOR = "Chrome OS Team" |
-NAME = "Factory Reboot" |
-TIME = "Medium" |
-TEST_CATEGORY = "Functional" |
-TEST_CLASS = "suite" |
-TEST_TYPE = "client" |
- |
-DOC = """ |
-This test suite runs automated client-side reboot tests. |
-""" |
- |
- |
-# Hack to work around autotest's obsession with GRUB. |
-def do_nothing(tag): |
- pass |
-job.bootloader.set_default = do_nothing |
-job.bootloader.boot_once = do_nothing |
- |
- |
-# This is where we start. |
-def step_init(): |
- step_reboot_test(1) |
- |
- |
-# Do longer runin tests. |
-def step_reboot_test(i): |
- if i < 5: |
- job.next_step([step_reboot_test, i + 1]) |
- |
- job.reboot() |
- |