Use max-jobs option to reduce memory usage and speedup execution of test-zbd-support. With --max-jobs=16, twice the largest number of jobs used in all test cases, the execution time of test-zbd-support against a zoned nullblk device is lowered from 64s to 41s on a laptop. Signed-off-by: Damien Le Moal <damien.lemoal@xxxxxxx> --- t/zbd/test-zbd-support | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t/zbd/test-zbd-support b/t/zbd/test-zbd-support index be889f34..de05f438 100755 --- a/t/zbd/test-zbd-support +++ b/t/zbd/test-zbd-support @@ -93,8 +93,8 @@ run_fio() { fio=$(dirname "$0")/../../fio - opts=("--aux-path=/tmp" "--allow_file_create=0" \ - "--significant_figures=10" "$@") + opts=("--max-jobs=16" "--aux-path=/tmp" "--allow_file_create=0" \ + "--significant_figures=10" "$@") opts+=(${var_opts[@]}) { echo; echo "fio ${opts[*]}"; echo; } >>"${logfile}.${test_number}" -- 2.25.4