diff options
author | Stefan Schmidt <s.schmidt@samsung.com> | 2019-12-09 16:39:34 +0100 |
---|---|---|
committer | Marcel Hollerbach <mail@marcel-hollerbach.de> | 2019-12-18 09:15:51 +0100 |
commit | 2bd801f8599926b95ff8dd241a87703ff8eb16f5 (patch) | |
tree | 0a825d27ddab015d1b67048a98fa667c4fe8a5f5 | |
parent | 365159c5ea83812fe0e5b05cd744db363ce8b28d (diff) |
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.build | 3 |
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', | |||
5 | 5 | ||
6 | benchmark('focus_widget_tree', focus_widget_tree_bench, | 6 | benchmark('focus_widget_tree', focus_widget_tree_bench, |
7 | args: ['5'], | 7 | args: ['5'], |
8 | timeout: 60 | ||
8 | ) | 9 | ) |
9 | 10 | ||
10 | item_container = executable('collection', | 11 | item_container = executable('collection', |
@@ -12,4 +13,4 @@ item_container = executable('collection', | |||
12 | dependencies: [elementary, ecore_input_evas, eio], | 13 | dependencies: [elementary, ecore_input_evas, eio], |
13 | ) | 14 | ) |
14 | 15 | ||
15 | benchmark('item_container', item_container) | 16 | benchmark('item_container', item_container, timeout: 60) |