Skip to content

Commit faa23f0

Browse files
committed
htx: keep rpm parameter common accross all test
As we have different htx test requires same rpm link so it is better to keep same parameter name to avoid duplicate entries in CI/CR environments Signed-off-by: Abdul Haleem <[email protected]>
1 parent 1bc3f65 commit faa23f0

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

Diff for: io/disk/htx_block_devices.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def setup_htx(self):
132132
self.log.info("Using existing HTX")
133133
skip_install = True
134134
if not skip_install:
135-
self.rpm_link = self.params.get("rpm_link", default=None)
135+
self.rpm_link = self.params.get("htx_rpm_link", default=None)
136136
if self.rpm_link:
137137
self.install_htx_rpm()
138138

Diff for: io/disk/htx_block_devices.py.data/Readme.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ all: True or False (True if all disks in selected mdt needs to be run.
2121
time_limit: 1 (In minutes)
2222
mdt_file: Pass the require mdt file, eg: 'mdt.io', mdt.hd
2323
run_type: this is to how do we want to install the htx tool eg: 'git' or 'rpm' based
24-
rpm_link: if you want to install htx through RPM then Pass the rpm link here.
24+
htx_rpm_link: if you want to install htx through RPM then Pass the rpm link here.

Diff for: io/disk/htx_block_devices.py.data/htx_all_devices.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ all: True
33
time_limit: 24
44
mdt_file: 'mdt.hd'
55
run_type: ''
6-
rpm_link: ''
6+
htx_rpm_link: ''

Diff for: io/disk/htx_block_devices.py.data/htx_block_devices.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ all: False
33
time_limit: 1
44
mdt_file: 'mdt.hd'
55
run_type: ''
6-
rpm_link: ''
6+
htx_rpm_link: ''

Diff for: workload/htx_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ def setup_htx(self):
155155
self.log.info("Using existing HTX")
156156
skip_install = True
157157
if not skip_install:
158-
self.rpm_link = self.params.get('rpm_link', default=None)
158+
self.rpm_link = self.params.get('htx_rpm_link', default=None)
159159
if self.rpm_link:
160160
self.install_latest_htx_rpm()
161161
else:

Diff for: workload/htx_test.py.data/htx_pmem.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
run_type: 'rpm'
2-
rpm_link: "null"
2+
htx_rpm_link: "null"
33
time_limit: 60 # in minutes
44
mdt: !mux
55
bu:

0 commit comments

Comments
 (0)