From a35c4f59ea0cbda30a54804e943fc9fc8fa30314 Mon Sep 17 00:00:00 2001 From: Michal Bloch Date: Fri, 20 Sep 2019 15:07:34 +0200 Subject: [PATCH] Let IO test #3 (avg) run for as long as needed Change-Id: I2777c68118b4f23771095ff9cc2077ad9934b267 Signed-off-by: Michal Bloch --- tests/test-stability-io.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test-stability-io.cpp b/tests/test-stability-io.cpp index 629c91c..498da68 100644 --- a/tests/test-stability-io.cpp +++ b/tests/test-stability-io.cpp @@ -92,7 +92,7 @@ int main (int argc, char ** argv) * Expect a signal (but not too early, would mean peak). */ if (! run_io_test (io_medium, TEST_TIME_PEAK, & handler_peak)) return false; - return ! run_io_test (io_medium, TEST_TIME_AVG - TEST_TIME_PEAK, & handler_avg); + return ! run_io_test (io_medium, TEST_TIME_AVG, & handler_avg); } , "medium I/O over time, expecting average signal but not peak" } }; -- 2.34.1