Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Unified Diff: client/site_tests/hardware_Touchpad/hardware_Touchpad.py

Issue 2857012: Batched update of factory tests. (Closed) Base URL: ssh://gitrw.chromium.org/autotest.git
Patch Set: finished comment Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: client/site_tests/hardware_Touchpad/hardware_Touchpad.py
diff --git a/client/site_tests/hardware_Touchpad/hardware_Touchpad.py b/client/site_tests/hardware_Touchpad/hardware_Touchpad.py
deleted file mode 100644
index 78c53fc895cb6391f7e20f98b8fbe58fc8b82299..0000000000000000000000000000000000000000
--- a/client/site_tests/hardware_Touchpad/hardware_Touchpad.py
+++ /dev/null
@@ -1,29 +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.
-
-import os, utils
-from autotest_lib.client.bin import test
-from autotest_lib.client.common_lib import error
-
-class hardware_Touchpad(test.test):
- version = 1
- preserve_srcdir = True
-
-
- def run_once(self, restart_ui=False):
-
- # kill chrome
- utils.system('/sbin/initctl stop ui', ignore_status=True)
-
- os.chdir(self.srcdir)
- args = ''
- if restart_ui:
- args += '--exit-on-error'
- status = utils.system('./start_test.sh ' + args, ignore_status=True)
-
- if restart_ui:
- utils.system('/sbin/initctl start ui', ignore_status=True)
-
- if status:
- raise error.TestFail('Test failed.')
« no previous file with comments | « client/site_tests/hardware_Touchpad/control ('k') | client/site_tests/hardware_Touchpad/src/TouchpadTest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698