summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schmidt <s.schmidt@samsung.com>2019-12-09 16:39:34 +0100
committerMarcel Hollerbach <mail@marcel-hollerbach.de>2019-12-18 09:15:51 +0100
commit2bd801f8599926b95ff8dd241a87703ff8eb16f5 (patch)
tree0a825d27ddab015d1b67048a98fa667c4fe8a5f5
parent365159c5ea83812fe0e5b05cd744db363ce8b28d (diff)
downloadefl-2bd801f8599926b95ff8dd241a87703ff8eb16f5.tar.gz
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 <s.schmidt@samsung.com> Reviewed-by: Marcel Hollerbach <mail@marcel-hollerbach.de> Differential Revision: https://phab.enlightenment.org/D10847
-rw-r--r--src/benchmarks/elementary/meson.build3
1 files changed, 2 insertions, 1 deletions
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)