Skip to content

Commit

Permalink
refactor(fio): remove fio wrapper
Browse files Browse the repository at this point in the history
Signed-off-by: Nadja Brix Koch <[email protected]>
  • Loading branch information
NaddiNadja authored and safl committed Feb 10, 2025
1 parent 19d7cb3 commit f0f08ef
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 103 deletions.
24 changes: 0 additions & 24 deletions src/cijoe/fio/configs/example_config_benchmark.toml

This file was deleted.

9 changes: 7 additions & 2 deletions src/cijoe/fio/scripts/check.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,17 @@
Retargetable: True
------------------
"""
from cijoe.fio.wrapper import fio
import logging as log


def main(args, cijoe, step):
"""Check version of fio"""

err, _ = fio(cijoe, "--help")
fio_bin = cijoe.getconf("fio.bin")
if not fio_bin:
log.error("missing config: fio.bin")
return 1

err, _ = cijoe.run(f"{fio_bin} --version")

return err
41 changes: 0 additions & 41 deletions src/cijoe/fio/wrapper.py

This file was deleted.

36 changes: 0 additions & 36 deletions tests/fio/test_fio_wrapper.py

This file was deleted.

0 comments on commit f0f08ef

Please sign in to comment.