discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=8c8901579506e8a8110a051c802227b1ac2090ee
commit 8c8901579506e8a8110a051c802227b1ac2090ee Author: Mike Blumenkrantz <[email protected]> Date: Tue Jun 19 13:33:30 2018 -0400 tests: set monitoring interval for eio tests to 0.05s Summary: cpu usage is not an issue during test runs, we want the tests to finish as fast as possible in all cases regardless of the cost. this resolves the last remaining issue with eio tests where sometimes the fallback monitor would trigger and the test suite would hang for 60+ seconds fix T6915 Depends on D6248 Reviewers: stefan_schmidt, bu5hm4n, ManMower, devilhorns Reviewed By: bu5hm4n, ManMower Subscribers: bu5hm4n, cedric, #committers Tags: #efl Maniphest Tasks: T6915 Differential Revision: https://phab.enlightenment.org/D6249 --- src/tests/eio/eio_suite.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tests/eio/eio_suite.c b/src/tests/eio/eio_suite.c index f83afd6a75..5b59c5c4dc 100644 --- a/src/tests/eio/eio_suite.c +++ b/src/tests/eio/eio_suite.c @@ -56,6 +56,7 @@ main(int argc, char **argv) putenv("EFL_RUN_IN_TREE=1"); #endif + eio_monitoring_interval_set(0.05); eina_init(); failed_count = _efl_suite_build_and_run(argc - 1, (const char **)argv + 1, --
