Skip to content

Commit

Permalink
DAOS-16406 test: file_count_test_base.py - Don't obtain dfuse mount_d…
Browse files Browse the repository at this point in the history
…ir from test yaml (#14993) (#15023)

Remove the following from file_count_test_base.py
mount_dir = self.params.get("mount_dir", "/run/dfuse/*")

dfuse mount_dir used to be defined in the test yaml, but now the harness creates a
unique directory per test. mount_dir definitions were removed from the test yaml
in PR11453.

Affected tests are:
deployment/io_sys_admin.py
io/large_file_count.py
io/small_file_count.py

Signed-off-by: Makito Kano <[email protected]>
  • Loading branch information
shimizukko authored Aug 30, 2024
1 parent a176bc5 commit bd4cfd2
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/tests/ftest/util/file_count_test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ def run_file_count(self):
dir_oclass = None
apis = self.params.get("api", "/run/largefilecount/*")
hdf5_plugin_path = self.params.get("plugin_path", '/run/hdf5_vol/*')
mount_dir = self.params.get("mount_dir", "/run/dfuse/*")
ior_np = self.params.get("np", '/run/ior/client_processes/*', 1)
ior_ppn = self.params.get("ppn", '/run/ior/client_processes/*', None)
mdtest_np = self.params.get("np", '/run/mdtest/client_processes/*', 1)
Expand Down Expand Up @@ -119,8 +118,7 @@ def run_file_count(self):
self.ppn = ior_ppn
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)
self.run_ior_with_pool(create_pool=False, plugin_path=hdf5_plugin_path)
elif self.ior_cmd.api.value == 'POSIX':
self.run_ior_with_pool(create_pool=False, intercept=intercept)
else:
Expand Down

0 comments on commit bd4cfd2

Please sign in to comment.