Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DAOS-15960 test: Makito's version of io_sys_admin test improvement #14858

Draft
wants to merge 25 commits into
base: master
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
73f7a8a
DAOS-15960 tests: Makito's version of io_sys_admin test improvement
Aug 1, 2024
963dc9a
DAOS-15960 test: Add launch.sh
Aug 1, 2024
b1795a7
DAOS-15960 test: Fix pylint
Aug 2, 2024
aca2967
DAOS-15960 test: Add comment
Aug 2, 2024
72d19ff
DAOS-15960 test: Remove -D 300
Aug 7, 2024
5c5e512
Merge branch 'master' into makito/DAOS-15960
Aug 7, 2024
8765979
Merge branch 'master' into makito/DAOS-15960
Aug 8, 2024
b410289
Merge branch 'master' into makito/DAOS-15960
Aug 9, 2024
77a0e43
Merge branch 'master' into makito/DAOS-15960
Aug 13, 2024
9aca1a2
DAOS-15960 test: Remove launch.sh because it's managed in aurora-tools
Aug 13, 2024
f1fe9c4
DAOS-15960 test: Remove unnecessary lines in io_sys_admin.yaml
Aug 13, 2024
05ff7de
DAOS-15960 test: Add line
Aug 13, 2024
5715158
Merge branch 'master' into makito/DAOS-15960
Aug 25, 2024
de365a5
DAOS-15960 test: Set oclass and cont_props to env var for HDF5-VOL
Aug 26, 2024
41cf512
Merge branch 'master' into makito/DAOS-15960
Aug 26, 2024
016628a
DAOS-15960 test: Remove unnecessary lines
Aug 26, 2024
4fa81b5
DAOS-15960 test: Get properties from self.container and modify it
Aug 28, 2024
660631a
Merge branch 'master' into makito/DAOS-15960
Aug 28, 2024
34b414c
Merge branch 'master' into makito/DAOS-15960
Sep 3, 2024
cc51aa2
DAOS-15960 test: Comment out unnecessary steps after file count test.
Sep 3, 2024
01d2ddb
DAOS-15960 test: Comment each line
Sep 3, 2024
4405ecf
Merge branch 'master' into makito/DAOS-15960
Sep 8, 2024
30955f2
Merge branch 'master' into makito/DAOS-15960
Sep 16, 2024
8b40e46
Merge branch 'master' into makito/DAOS-15960
Sep 21, 2024
90575bc
DAOS-15960 test: Set False to all subtests except io
Sep 21, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
DAOS-15960 test: Remove unnecessary lines
Skip-build: true
Skip-test: true
Signed-off-by: Makito <[email protected]>
Makito committed Aug 26, 2024
commit 016628a61065cb005218322008c8b90e81e3ae87
4 changes: 2 additions & 2 deletions src/tests/ftest/util/file_count_test_base.py
Original file line number Diff line number Diff line change
@@ -25,6 +25,8 @@ def add_containers(self, file_oclass=None, dir_oclass=None):
Defaults to None.
dir_oclass (str, optional): dir object class of container.
Defaults to None.


"""
# Create a container and add it to the overall list of containers
container = self.get_container(self.pool, create=False)
@@ -38,8 +40,6 @@ def add_containers(self, file_oclass=None, dir_oclass=None):
rd_fac = 'rd_fac:{}'.format(str(redundancy_factor))
properties = (",").join(filter(None, [properties, rd_fac]))
container.properties.update(properties)
if dir_oclass:
container.dir_oclass.update(dir_oclass)
container.create()

return container