Skip to content

Commit 5390681

Browse files
committed
Fixing the packaging issue in Lcov.py
we do not need tiny* for sles hence removing the same for sles and keeping the package for rhel Signed-off-by: Naresh Bannoth <[email protected]>
1 parent 506e46d commit 5390681

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)