From 6108ea0978871eae23b1083dc59263ed10309fa7 Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Mon, 4 Nov 2019 15:52:29 +0100 Subject: [PATCH] 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 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 )