From: Vincent Fu Date: Mon, 15 Aug 2022 15:40:58 +0000 (-0400) Subject: test: fix hash for t0016 X-Git-Tag: fio-3.32~19 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=f045d5f85f80c226f12586df90482fe804fc5c19;p=fio.git test: fix hash for t0016 I used the wrong hash for t0016 in the original commit. Fix it to refer to the hash that fixed the issue in this tree. Fixes: de31fe9a ("testing: add test for slat + clat = tlat") Signed-off-by: Vincent Fu --- diff --git a/t/jobs/t0016-259ebc00.fio b/t/jobs/t0016-259ebc00.fio deleted file mode 100644 index 1b418e7c..00000000 --- a/t/jobs/t0016-259ebc00.fio +++ /dev/null @@ -1,7 +0,0 @@ -# Expected result: mean(slat) + mean(clat) = mean(lat) -# Buggy result: equality does not hold - -[test] -ioengine=null -size=1M -iodepth=16 diff --git a/t/jobs/t0016-d54ae22.fio b/t/jobs/t0016-d54ae22.fio new file mode 100644 index 00000000..1b418e7c --- /dev/null +++ b/t/jobs/t0016-d54ae22.fio @@ -0,0 +1,7 @@ +# Expected result: mean(slat) + mean(clat) = mean(lat) +# Buggy result: equality does not hold + +[test] +ioengine=null +size=1M +iodepth=16 diff --git a/t/run-fio-tests.py b/t/run-fio-tests.py index 2bd02a2a..504b7cdb 100755 --- a/t/run-fio-tests.py +++ b/t/run-fio-tests.py @@ -850,7 +850,7 @@ TEST_LIST = [ { 'test_id': 16, 'test_class': FioJobTest_t0015, - 'job': 't0016-259ebc00.fio', + 'job': 't0016-d54ae22.fio', 'success': SUCCESS_DEFAULT, 'pre_job': None, 'pre_success': None,