~linaro-foundations/lava-test/new-test-definitions

« back to all changes in this revision

Viewing changes to abrek/test_definitions/pwrmgmt.py

  • Committer: Paul Larson
  • Date: 2011-09-02 14:28:19 UTC
  • Revision ID: paul.larson@canonical.com-20110902142819-ok0gqwk2d1byxv29
Add linux-libc-dev dep for pwrmgmt tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
INSTALLSTEPS = ['git clone git://git.linaro.org/tools/pm-qa.git',
20
20
                'cd pm-qa && make clean && make all']
21
21
RUNSTEPS = ['cd pm-qa && make check']
22
 
DEPS = ['git-core', 'make']
 
22
DEPS = ['git-core', 'make', 'linux-libc-dev']
23
23
 
24
24
pwrmgmtinst = abrek.testdef.AbrekTestInstaller(INSTALLSTEPS, deps=DEPS)
25
25
pwrmgmtrun = abrek.testdef.AbrekTestRunner(RUNSTEPS)