diff mbox

[Branch,~linaro-validation/lava-test/trunk] Rev 147: Fix pwrmgmt test dependencies.

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

Commit Message

Fathi Boudra May 21, 2012, 7:02 a.m. UTC
------------------------------------------------------------
revno: 147
committer: Fathi Boudra <fathi.boudra@linaro.org>
branch nick: lava-test
timestamp: Mon 2012-05-21 09:59:56 +0300
message:
  Fix pwrmgmt test dependencies.
modified:
  lava_test/test_definitions/pwrmgmt.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/test_definitions/pwrmgmt.py'
--- lava_test/test_definitions/pwrmgmt.py	2012-03-17 11:02:42 +0000
+++ lava_test/test_definitions/pwrmgmt.py	2012-05-21 06:59:56 +0000
@@ -21,8 +21,6 @@ 
 **Default options:** None
 """
 
-
-
 from lava_test.core.installers import TestInstaller
 from lava_test.core.parsers import TestParser
 from lava_test.core.runners import TestRunner
@@ -33,7 +31,7 @@ 
 INSTALLSTEPS = ['git clone git://git.linaro.org/tools/pm-qa.git',
                 'cd pm-qa && make clean && make all']
 RUNSTEPS = ['cd pm-qa && make check $(OPTIONS)']
-DEPS = ['git-core', 'make', 'linux-libc-dev', 'util-linux', 'build-essential']
+DEPS = ['git-core', 'linux-libc-dev', 'build-essential']
 
 # test case name is before  ":" , the test log is between ":" and "...",
 # the result is after "..."
@@ -56,7 +54,6 @@ 
     "\.\.\.\s+"
     "(?P<result>\w+)")
 
-
 installer = TestInstaller(INSTALLSTEPS, deps=DEPS)
 runner = TestRunner(RUNSTEPS, default_options=DEFAULT_OPTIONS)
 parser = TestParser(PATTERN, appendall={'result': 'pass'})