diff mbox

[Branch,~linaro-validation/lava-test/trunk] Rev 114: new lttng test from Avik Sil

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

Commit Message

Paul Larson Feb. 7, 2012, 11:18 p.m. UTC
Merge authors:
  Avik Sil (aviksil)
Related merge proposals:
  https://code.launchpad.net/~linaro-foundations/lava-test/lava-test-lttng/+merge/91207
  proposed by: Avik Sil (aviksil)
  review: Approve - Paul Larson (pwlars)
------------------------------------------------------------
revno: 114 [merge]
committer: Paul Larson <paul.larson@linaro.org>
branch nick: lava-test
timestamp: Tue 2012-02-07 14:46:35 -0800
message:
  new lttng test from Avik Sil
added:
  lava_test/test_definitions/lttng.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-01-19 00:11:33 +0000
+++ doc/tests.rst	2012-02-02 06:28:35 +0000
@@ -13,6 +13,7 @@ 
  * `gtkperf`_
  * `insanity`_
  * `ltp`_
+ * `lttng`_
  * `peacekeeper`_
  * `perf`_
  * `posixtestsuite`_
@@ -52,6 +53,10 @@ 
 +++
 .. automodule:: lava_test.test_definitions.ltp
 
+lttng
++++
+.. automodule:: lava_test.test_definitions.lttng
+
 peacekeeper
 +++++++++++
 .. automodule:: lava_test.test_definitions.peacekeeper

=== modified file 'lava_test/core/providers.py'
--- lava_test/core/providers.py	2012-02-06 17:51:19 +0000
+++ lava_test/core/providers.py	2012-02-07 22:46:35 +0000
@@ -36,6 +36,7 @@ 
         'gmpbench',
         'gtkperf',
         'ltp',
+        'lttng',
         'peacekeeper',
         'perf',
         'posixtestsuite',

=== added file 'lava_test/test_definitions/lttng.py'
--- lava_test/test_definitions/lttng.py	1970-01-01 00:00:00 +0000
+++ lava_test/test_definitions/lttng.py	2012-02-02 06:28:35 +0000
@@ -0,0 +1,41 @@ 
+# Copyright (c) 2012 Linaro
+#
+# 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 lttng test executes lttng-tools test suite and reports the result.
+
+**URL:** https://code.launchpad.net/~linaro-foundations/linaro-ubuntu/lava-test-lttng
+
+**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 = ["apt-get build-dep lttng-tools --yes",
+                "bzr branch lp:~linaro-foundations/linaro-ubuntu/lava-test-lttng"]
+DEPS = ["bzr", "linux-headers-$(uname -r)", "lttng-modules-dkms"]
+RUNSTEPS = ["cd lava-test-lttng; sudo bash -x ./run-test.sh"]
+PATTERN = "^(?P<test_case_id>[\w:()]+)\s+\-\s+(?P<result>\w+$)"
+
+lttnginst = TestInstaller(INSTALLSTEPS, deps=DEPS)
+lttngrun = TestRunner(RUNSTEPS, default_options=DEFAULT_OPTIONS)
+lttngparser = TestParser(PATTERN)
+testobj = Test(test_id="lttng", installer=lttnginst,
+                                  runner=lttngrun, parser=lttngparser)