From a36c1be8a04b2914fcd2f5367c07b79cb97ce9ba Mon Sep 17 00:00:00 2001 From: Slawomir Jankowski Date: Wed, 16 Sep 2020 12:42:10 +0200 Subject: [PATCH] In DI12h test, verify each job separately, right after job is done. Verifying the whole workload at once generates failures in some DUT configurations. Signed-off-by: Slawomir Jankowski --- test/functional/tests/data_integrity/test_data_integrity_12h.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/functional/tests/data_integrity/test_data_integrity_12h.py b/test/functional/tests/data_integrity/test_data_integrity_12h.py index ddaef70..343ea70 100644 --- a/test/functional/tests/data_integrity/test_data_integrity_12h.py +++ b/test/functional/tests/data_integrity/test_data_integrity_12h.py @@ -92,5 +92,6 @@ def run_workload(target): fio_job = fio_run.add_job() fio_job.stonewall() fio_job.block_size(block_size) + fio_run.verify_backlog(block_size) fio_run.run()