diff mbox

[Branch,~linaro-validation/lava-test/trunk] Rev 175: Add device-tree test definition

Message ID 20120920055112.7976.46278.launchpad@ackee.canonical.com
State Accepted
Headers show

Commit Message

Fathi Boudra Sept. 20, 2012, 5:51 a.m. UTC
Merge authors:
  Ricardo Salveti (rsalveti)
Related merge proposals:
  https://code.launchpad.net/~rsalveti/lava-test/adding-device-tree-test-definition/+merge/125382
  proposed by: Ricardo Salveti (rsalveti)
  review: Approve - Fathi Boudra (fboudra)
------------------------------------------------------------
revno: 175 [merge]
committer: Fathi Boudra <fathi.boudra@linaro.org>
branch nick: lava-test
timestamp: Thu 2012-09-20 08:50:09 +0300
message:
  Add device-tree test definition
added:
  lava_test/test_definitions/device_tree.py
modified:
  doc/tests.rst
  lava_test/core/providers.py


--
lp:lava-test
https://code.launchpad.net/~linaro-validation/lava-test/trunk

You are subscribed to branch lp:lava-test.
To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-test/trunk/+edit-subscription
diff mbox

Patch

=== modified file 'doc/tests.rst'
--- doc/tests.rst	2012-09-05 08:51:51 +0000
+++ doc/tests.rst	2012-09-20 00:33:35 +0000
@@ -8,6 +8,7 @@ 
 
  * `bluetooth-enablement`_
  * `bootchart`_
+ * `device-tree`_
  * `e2eaudiotest`_
  * `firefox`_
  * `gatortests`_	
@@ -40,6 +41,10 @@ 
 +++++++++
 .. automodule:: lava_test.test_definitions.bootchart
 
+device-tree
++++++++++++
+.. automodule:: lava_test.test_definitions.device_tree
+
 e2eaudiotest
 ++++++++++++
 .. automodule:: lava_test.test_definitions.e2eaudiotest

=== modified file 'lava_test/core/providers.py'
--- lava_test/core/providers.py	2012-09-05 08:51:51 +0000
+++ lava_test/core/providers.py	2012-09-20 00:33:35 +0000
@@ -29,6 +29,7 @@ 
     _builtin_tests = [
         'bluetooth_enablement',
         'bootchart',
+        'device_tree',
         'insanity',
         'e2eaudiotest',
         'firefox',

=== added file 'lava_test/test_definitions/device_tree.py'
--- lava_test/test_definitions/device_tree.py	1970-01-01 00:00:00 +0000
+++ lava_test/test_definitions/device_tree.py	2012-09-20 00:33:35 +0000
@@ -0,0 +1,52 @@ 
+# Copyright (c) 2012 Linaro
+#
+# Author: Ricardo Salveti <rsalveti@linaro.org>
+#
+# 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/>.
+
+"""
+The Device Tree test cases helps validating basic device tree support.
+
+**URL:** https://code.launchpad.net/~linaro-foundations/linaro-ubuntu/lava-test-device-tree
+
+**Default Options:** None
+"""
+
+from lava_test.core.installers import TestInstaller
+from lava_test.core.parsers import TestParser
+from lava_test.core.runners import TestRunner
+from lava_test.core.tests import Test
+
+DEFAULT_OPTIONS = ""
+INSTALLSTEPS = [(
+    "bzr branch"
+    " lp:~linaro-foundations/linaro-ubuntu/lava-test-device-tree"
+    " device-tree")]
+DEPS = ["bzr"]
+RUNSTEPS = ["cd device-tree; sudo bash -x ./run-test.sh"]
+PATTERN = "(?P<test_case_id>[a-zA-Z0-9_-]+):\s(?P<result>\w+)"
+FIXUPS = {
+    "PASS": "pass",
+    "FAIL": "fail"
+}
+
+installer = TestInstaller(INSTALLSTEPS, deps=DEPS)
+runner = TestRunner(RUNSTEPS, default_options=DEFAULT_OPTIONS)
+parser = TestParser(PATTERN, fixupdict=FIXUPS)
+
+testobj = Test(
+    test_id="device-tree",
+    installer=installer,
+    runner=runner,
+    parser=parser)