Skip to content

Commit 993ff49

Browse files
committed
fix ebizzy url link fail to wget
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]>
1 parent ed2e949 commit 993ff49

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

testcases/PowerNVDump.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def setUp(self):
122122
self.rsa_path = "/root/.ssh/dmp_id_rsa"
123123
try: self.url = conf.args.url
124124
except AttributeError:
125-
self.url = "http://liquidtelecom.dl.sourceforge.net/project/ebizzy/ebizzy/0.3/ebizzy-0.3.tar.gz"
125+
self.url = "https://sourceforge.net/projects/ebizzy/files/ebizzy/0.3/ebizzy-0.3.tar.gz"
126126
self.cv_SYSTEM.goto_state(OpSystemState.OS)
127127
res = self.cv_HOST.host_run_command("cat /etc/os-release", timeout=60)
128128
if "Ubuntu" in res[0] or "Ubuntu" in res[1]:
@@ -1049,7 +1049,7 @@ class KernelCrash_KdumpWorkLoad(PowerNVDump):
10491049

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

10541054

10551055
def runTest(self):

0 commit comments

Comments
 (0)