stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=6108ea0978871eae23b1083dc59263ed10309fa7
commit 6108ea0978871eae23b1083dc59263ed10309fa7 Author: Stefan Schmidt <[email protected]> Date: Mon Nov 4 15:52:29 2019 +0100 tests/spec: allow for a longer timeout of the spec suite for dist build During our ninja dist builds on the CI we run into timeouts for the spec test suite taking longer than the default 30s. We can't pass any multiplier into the ninja dist command as we are doing on the other unit test runs. Allow th default value for this suite to also cover the CI case. It does no harm on sutuations where it finishes faster. Reviewed-by: Marcel Hollerbach <[email protected]> Differential Revision: https://phab.enlightenment.org/D10593 --- src/tests/elementary/spec/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tests/elementary/spec/meson.build b/src/tests/elementary/spec/meson.build index 8b28e2cdd2..e0a5a3c86d 100644 --- a/src/tests/elementary/spec/meson.build +++ b/src/tests/elementary/spec/meson.build @@ -44,5 +44,6 @@ efl_ui_behavior_suite = executable('efl_ui_spec_suite', ) test('efl_ui_spec-suite', efl_ui_behavior_suite, - env : test_env + env : test_env, + timeout: 60 ) --
