diff mbox

[Branch,~linaro-validation/lava-test/trunk] Rev 95: fix missing tests

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

Commit Message

Paul Larson Sept. 23, 2011, 8:34 a.m. UTC
------------------------------------------------------------
revno: 95
fixes bug: https://launchpad.net/bugs/857137
committer: Paul Larson <paul.larson@canonical.com>
branch nick: lava-test
timestamp: Fri 2011-09-23 03:10:25 -0500
message:
  fix missing tests
modified:
  lava_test/core/providers.py
  lava_test/test_definitions/bootchart.py
  lava_test/test_definitions/smem.py
  lava_test/test_definitions/xrestop.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 'lava_test/core/providers.py'
--- lava_test/core/providers.py	2011-09-12 09:19:10 +0000
+++ lava_test/core/providers.py	2011-09-23 08:10:25 +0000
@@ -25,15 +25,21 @@ 
     """
 
     _builtin_tests = [
+        'bootchart',
+        'firefox',
         'glmemperf',
         'gmpbench',
         'gtkperf',
         'ltp',
+        'peacekeeper',
         'posixtestsuite',
         'pwrmgmt',
+        'pybench',
+        'smem',
         'stream',
         'tiobench',
         'x11perf',
+        'xrestop',
     ]
 
     def __init__(self, config):

=== modified file 'lava_test/test_definitions/bootchart.py'
--- lava_test/test_definitions/bootchart.py	2011-09-12 09:19:10 +0000
+++ lava_test/test_definitions/bootchart.py	2011-09-23 08:10:25 +0000
@@ -27,5 +27,5 @@ 
 bootchartrun = TestRunner(RUNSTEPS)
 bootchartparser = TestParser(PATTERN,
                    appendall={'units':'sec', 'result':'pass'})
-testobj = Test(testname="bootchart", installer=bootchartinst,
+testobj = Test(test_id="bootchart", installer=bootchartinst,
                                   runner=bootchartrun, parser=bootchartparser)

=== modified file 'lava_test/test_definitions/smem.py'
--- lava_test/test_definitions/smem.py	2011-09-12 09:19:10 +0000
+++ lava_test/test_definitions/smem.py	2011-09-23 08:10:25 +0000
@@ -27,5 +27,5 @@ 
 smemrun = TestRunner(RUNSTEPS)
 smemparser = TestParser(PATTERN,
                appendall={'units':'KB', 'result':'pass'})
-testobj = Test(testname="smem", installer=smeminst,
+testobj = Test(test_id="smem", installer=smeminst,
                                   runner=smemrun, parser=smemparser)

=== modified file 'lava_test/test_definitions/xrestop.py'
--- lava_test/test_definitions/xrestop.py	2011-09-12 09:19:10 +0000
+++ lava_test/test_definitions/xrestop.py	2011-09-23 08:10:25 +0000
@@ -26,5 +26,5 @@ 
 xrestoprun = TestRunner(RUNSTEPS)
 xrestopparser = TestParser(PATTERN,
                    appendall={'units':'KB', 'result':'pass'})
-testobj = Test(testname="xrestop", installer=xrestopinst,
+testobj = Test(test_id="xrestop", installer=xrestopinst,
                                   runner=xrestoprun, parser=xrestopparser)