aboutsummaryrefslogtreecommitdiff
path: root/build/lib.linux-x86_64-2.7/lava_android_test/test_definitions/sched_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'build/lib.linux-x86_64-2.7/lava_android_test/test_definitions/sched_tests.py')
-rw-r--r--build/lib.linux-x86_64-2.7/lava_android_test/test_definitions/sched_tests.py49
1 files changed, 0 insertions, 49 deletions
diff --git a/build/lib.linux-x86_64-2.7/lava_android_test/test_definitions/sched_tests.py b/build/lib.linux-x86_64-2.7/lava_android_test/test_definitions/sched_tests.py
deleted file mode 100644
index df91439..0000000
--- a/build/lib.linux-x86_64-2.7/lava_android_test/test_definitions/sched_tests.py
+++ /dev/null
@@ -1,49 +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/>.
-
-"""
-Drives scheduler test scripts that are pre-intalled on Linaro Android
-builds of big.LITTLE
-
-**URL:** https://linaro-private.git.linaro.org/gitweb?p=bL_tests/sched_tests.git
-
-**Default options:** None
-"""
-
-import lava_android_test.testdef
-
-test_name = 'sched_tests'
-
-DEFAULT_OPTIONS='output all'
-
-INSTALL_STEPS_ADB_PRE = []
-ADB_SHELL_STEPS = ['run_sched_test $(OPTIONS)']
-PATTERN = "(?P<test_case_id>.*-*)\s+:\s+(?P<result>(SUCCESS|FAILED))"
-
-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)