From 97b65a6280435c6780b96168161323afb4225b24 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 33be7aa013..931f4da73b 100644 --- a/src/tests/elementary/spec/meson.build +++ b/src/tests/elementary/spec/meson.build @@ -43,5 +43,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 )