aboutsummaryrefslogtreecommitdiff
path: root/build/lib.linux-x86_64-2.7/lava_android_test/test_definitions/sleep.py
diff options
context:
space:
mode:
Diffstat (limited to 'build/lib.linux-x86_64-2.7/lava_android_test/test_definitions/sleep.py')
-rw-r--r--build/lib.linux-x86_64-2.7/lava_android_test/test_definitions/sleep.py48
1 files changed, 0 insertions, 48 deletions
diff --git a/build/lib.linux-x86_64-2.7/lava_android_test/test_definitions/sleep.py b/build/lib.linux-x86_64-2.7/lava_android_test/test_definitions/sleep.py
deleted file mode 100644
index faf39ad..0000000
--- a/build/lib.linux-x86_64-2.7/lava_android_test/test_definitions/sleep.py
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright (c) 2012 Linaro
-
-# Author: Linaro Validation Team <linaro-dev@lists.linaro.org>
-#
-# This file is part of LAVA Android Test.
-#
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-"""
-Action for sleeping some time between test actions
-
-**URL:** None
-
-**Default options:** None
-"""
-import lava_android_test.config
-import lava_android_test.testdef
-
-test_name = 'sleep'
-
-DEFAULT_OPTIONS = '10'
-
-INSTALL_STEPS_ADB_PRE = []
-ADB_SHELL_STEPS = ['sleep $(OPTIONS); echo sleep_$(OPTIONS): PASS']
-PATTERN = "^\s*(?P<test_case_id>[^:]+?):\s+(?P<result>(PASS|FAIL)?)\s*$"
-
-inst = lava_android_test.testdef.AndroidTestInstaller(
- steps_adb_pre=INSTALL_STEPS_ADB_PRE)
-run = lava_android_test.testdef.AndroidTestRunner(
- adbshell_steps=ADB_SHELL_STEPS)
-parser = lava_android_test.testdef.AndroidTestParser(PATTERN)
-testobj = lava_android_test.testdef.AndroidTest(testname=test_name,
- installer=inst,
- runner=run,
- parser=parser,
- default_options=DEFAULT_OPTIONS)