From: Stefan Schmidt Date: Mon, 9 Dec 2019 15:39:34 +0000 (+0100) Subject: benchmarks: increase timeout value for running elementary benchmarks X-Git-Tag: accepted/tizen/unified/20191219.143707~15 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5c6771d12a4ccb17e7c66cf31ffcb6e44ea6fab7;p=platform%2Fupstream%2Fefl.git 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 --- diff --git a/src/benchmarks/elementary/meson.build b/src/benchmarks/elementary/meson.build index 1cbddab..868cbca 100644 --- a/src/benchmarks/elementary/meson.build +++ b/src/benchmarks/elementary/meson.build @@ -6,6 +6,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', @@ -14,4 +15,4 @@ item_container = executable('collection', pie:true, #TIZEN_ONLY ) -benchmark('item_container', item_container) +benchmark('item_container', item_container, timeout: 60)