Skip to content

Commit

Permalink
Merge pull request #867 from Naresh-ibm/Lcov_package_issue
Browse files Browse the repository at this point in the history
Fixing the packaging issue in Lcov.py
  • Loading branch information
PraveenPenguin authored Oct 4, 2024
2 parents 506e46d + 5390681 commit a41efad
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion testcases/Lcov.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,12 @@ def runTest(self):
Test for installing the lcov
'''
log.info("distro_name=%s" %self.distro)
dep_packages = ['perl*', 'git-core']
if self.distro == 'rhel':
cmd = "yum install"
dep_packages.append('tiny*')
elif self.distro == 'sles':
cmd = "zypper install"
dep_packages = ['perl*', 'tiny*']
log.info("installing the dependency packages")
for pkg in dep_packages:
if self.distro == 'rhel':
Expand Down

0 comments on commit a41efad

Please sign in to comment.