benchmarks: increase timeout value for running elementary benchmarks
authorStefan Schmidt <s.schmidt@samsung.com>
Mon, 9 Dec 2019 15:39:34 +0000 (16:39 +0100)
committerJongmin Lee <jm105.lee@samsung.com>
Wed, 18 Dec 2019 20:56:34 +0000 (05:56 +0900)
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

src/benchmarks/elementary/meson.build

index 1cbddab..868cbca 100644 (file)
@@ -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)