Skip to content

Commit

Permalink
fix ebizzy url link fail to wget
Browse files Browse the repository at this point in the history
The old url is not working and the test is hung, so
the URL is now changed to working link

Signed-off-by: Abdul Haleem <[email protected]>
  • Loading branch information
abdhaleegit committed Nov 13, 2024
1 parent ed2e949 commit 993ff49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testcases/PowerNVDump.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def setUp(self):
self.rsa_path = "/root/.ssh/dmp_id_rsa"
try: self.url = conf.args.url
except AttributeError:
self.url = "http://liquidtelecom.dl.sourceforge.net/project/ebizzy/ebizzy/0.3/ebizzy-0.3.tar.gz"
self.url = "https://sourceforge.net/projects/ebizzy/files/ebizzy/0.3/ebizzy-0.3.tar.gz"
self.cv_SYSTEM.goto_state(OpSystemState.OS)
res = self.cv_HOST.host_run_command("cat /etc/os-release", timeout=60)
if "Ubuntu" in res[0] or "Ubuntu" in res[1]:
Expand Down Expand Up @@ -1049,7 +1049,7 @@ class KernelCrash_KdumpWorkLoad(PowerNVDump):

# This test verifies kdump/fadump after running ebizzy.
# ebizzy url needs to be given in ~/.op-test-framework.conf.
# Ex: url=http://liquidtelecom.dl.sourceforge.net/project/ebizzy/ebizzy/0.3/ebizzy-0.3.tar.gz
# Ex: url=https://sourceforge.net/projects/ebizzy/files/ebizzy/0.3/ebizzy-0.3.tar.gz


def runTest(self):
Expand Down

0 comments on commit 993ff49

Please sign in to comment.