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 <mail@marcel-hollerbach.de>
Differential Revision: https://phab.enlightenment.org/D10593
This commit is contained in:
Stefan Schmidt 2019-11-04 15:52:29 +01:00
parent 4068d1c5be
commit 6108ea0978
1 changed files with 2 additions and 1 deletions

View File

@ -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
)