We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 506e46d commit 5390681Copy full SHA for 5390681
testcases/Lcov.py
@@ -59,11 +59,12 @@ def runTest(self):
59
Test for installing the lcov
60
'''
61
log.info("distro_name=%s" %self.distro)
62
+ dep_packages = ['perl*', 'git-core']
63
if self.distro == 'rhel':
64
cmd = "yum install"
65
+ dep_packages.append('tiny*')
66
elif self.distro == 'sles':
67
cmd = "zypper install"
- dep_packages = ['perl*', 'tiny*']
68
log.info("installing the dependency packages")
69
for pkg in dep_packages:
70
0 commit comments