From 2bd801f8599926b95ff8dd241a87703ff8eb16f5 Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Mon, 9 Dec 2019 16:39:34 +0100 Subject: [PATCH] benchmarks: increase timeout value for running elementary benchmarks Default is 30s and I run into timeouts all the time. Increasing it to 60s for the elementary benchmarks. On my local machine its around 45s for the slower one. Signed-off-by: Stefan Schmidt Reviewed-by: Marcel Hollerbach Differential Revision: https://phab.enlightenment.org/D10847 --- src/benchmarks/elementary/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/benchmarks/elementary/meson.build b/src/benchmarks/elementary/meson.build index 6685ffc58e..8cb1b99057 100644 --- a/src/benchmarks/elementary/meson.build +++ b/src/benchmarks/elementary/meson.build @@ -5,6 +5,7 @@ focus_widget_tree_bench = executable('focus_widget_tree_bench', benchmark('focus_widget_tree', focus_widget_tree_bench, args: ['5'], + timeout: 60 ) item_container = executable('collection', @@ -12,4 +13,4 @@ item_container = executable('collection', dependencies: [elementary, ecore_input_evas, eio], ) -benchmark('item_container', item_container) +benchmark('item_container', item_container, timeout: 60)