From ef918ab11d63c79490a300b5ce4a8482fc22da18 Mon Sep 17 00:00:00 2001 From: Vincent Fu Date: Mon, 18 May 2020 10:06:42 -0400 Subject: [PATCH] t/jsonplus2csv_test: reduce file size Reduce the file size to better accommodate testing on low-powered devices. Also add a comment about the ionegine choice. Signed-off-by: Vincent Fu --- t/jsonplus2csv_test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/t/jsonplus2csv_test.py b/t/jsonplus2csv_test.py index 2b34ef25..34084b14 100755 --- a/t/jsonplus2csv_test.py +++ b/t/jsonplus2csv_test.py @@ -44,6 +44,7 @@ def run_fio(fio): fio path to fio executable. """ +# We need an async ioengine to get submission latencies if platform.system() == 'Linux': aio = 'libaio' elif platform.system() == 'Windows': @@ -58,7 +59,7 @@ def run_fio(fio): "--ioengine=" + aio, "--time_based", "--runtime=3s", - "--size=1G", + "--size=1M", "--slat_percentiles=1", "--clat_percentiles=1", "--lat_percentiles=1", -- 2.25.1