Skip to content

Commit a41efad

Browse files
Merge pull request #867 from Naresh-ibm/Lcov_package_issue
Fixing the packaging issue in Lcov.py
2 parents 506e46d + 5390681 commit a41efad

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

testcases/Lcov.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,12 @@ def runTest(self):
5959
Test for installing the lcov
6060
'''
6161
log.info("distro_name=%s" %self.distro)
62+
dep_packages = ['perl*', 'git-core']
6263
if self.distro == 'rhel':
6364
cmd = "yum install"
65+
dep_packages.append('tiny*')
6466
elif self.distro == 'sles':
6567
cmd = "zypper install"
66-
dep_packages = ['perl*', 'tiny*']
6768
log.info("installing the dependency packages")
6869
for pkg in dep_packages:
6970
if self.distro == 'rhel':

0 commit comments

Comments
 (0)