Skip to content

Commit ad758e3

Browse files
committed
fix(test): Fix a typo of a fio parameter
`--time_base` option is not documented. Use the documented one `--time_based`. [1]: https://fio.readthedocs.io/en/latest/fio_doc.html#cmdoption-arg-time_based Signed-off-by: Takahiro Itazuri <[email protected]>
1 parent cdd7dcb commit ad758e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration_tests/performance/test_block_ab.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def run_fio(microvm, mode, block_size):
5252
.with_arg(f"--rw={mode}")
5353
.with_arg(f"--bs={block_size}")
5454
.with_arg("--filename=/dev/vdb")
55-
.with_arg("--time_base=1")
55+
.with_arg("--time_based=1")
5656
.with_arg(f"--size={BLOCK_DEVICE_SIZE_MB}M")
5757
.with_arg("--direct=1")
5858
.with_arg("--ioengine=libaio")

0 commit comments

Comments
 (0)