Skip to content

Commit

Permalink
DAOS-16381 test: Run IOR with HDF5-VOL with multiple object classes (#…
Browse files Browse the repository at this point in the history
…14964)

Currently, the logic in util/file_count_test_base.py runs IOR with HDF5-VOL
with only one object class. The second (and beyond) object class will not
run with HDF5-VOL (it runs as a normal IOR). Update line 120 to:

if api == 'HDF5-VOL':

so that if multiple object classes are defined in the test yaml, all of them
will run with HDF5-VOL.

Signed-off-by: Makito Kano <makito.kano@intel.com>
  • Loading branch information
shimizukko authored Aug 21, 2024
1 parent 6107475 commit 4361a3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tests/ftest/util/file_count_test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def run_file_count(self):
try:
self.processes = ior_np
self.ppn = ior_ppn
if self.ior_cmd.api.value == 'HDF5-VOL':
if api == 'HDF5-VOL':
self.ior_cmd.api.update('HDF5')
self.run_ior_with_pool(
create_pool=False, plugin_path=hdf5_plugin_path, mount_dir=mount_dir)
Expand Down

0 comments on commit 4361a3e

Please sign in to comment.