zpios Error message regarding chunksize is backward (misleading) #2072
Labels
Component: Test Suite
Indicates an issue with the test framework or a test case
Type: Documentation
Indicates a requested change to the documentation
Milestone
The error in the zpios man page (issue #2071) would lead you to think that this command line:
zpios -s 1 -c 1m
was for one thread and a 1 MB chunk size. If you run it you get the error message:
Error: in any run chunksize can not be smaller than regionsize.
When you correct the command line based on the correct options (as determined by reading the source code) then you might do this:
zpios -t 1 -s 1m -c 1g
Note that the chunk size is smaller than the regionsize. You get the above error anyway. That is because the error message itself is wrong. It meant to say "in any run chunksize can not be larger than regionsize". If you use the code in the latter fashion then it works fine, so this is just a bug in the error message itself.
The text was updated successfully, but these errors were encountered: