summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Hollerbach <mail@marcel-hollerbach.de>2018-11-25 12:49:15 +0100
committerChristopher Michael <cp.michael@samsung.com>2018-12-06 12:06:16 -0500
commitc4245941ad3150ee145afba324041cc5a08b417f (patch)
tree443a8ba50e902e5260d94ea109e5c300234f7a2c
parent907ee1a497417874c243a7a99e3ed4e8c3a234cd (diff)
downloadefl-c4245941ad3150ee145afba324041cc5a08b417f.tar.gz
meson: fix running of benchmark
Differential Revision: https://phab.enlightenment.org/D7362
-rw-r--r--src/benchmarks/eina/meson.build3
-rw-r--r--src/benchmarks/eo/meson.build4
2 files changed, 5 insertions, 2 deletions
diff --git a/src/benchmarks/eina/meson.build b/src/benchmarks/eina/meson.build
index aa9081cef2..34c75b7ca0 100644
--- a/src/benchmarks/eina/meson.build
+++ b/src/benchmarks/eina/meson.build
@@ -37,5 +37,6 @@ eina_bench = executable('eina_bench',
)
benchmark('eina_bench', eina_bench,
+ args : 'libcity.la',
timeout : 20*60
-) \ No newline at end of file
+)
diff --git a/src/benchmarks/eo/meson.build b/src/benchmarks/eo/meson.build
index 2df6c71e97..971359ceb1 100644
--- a/src/benchmarks/eo/meson.build
+++ b/src/benchmarks/eo/meson.build
@@ -13,4 +13,6 @@ eo_bench = executable('eo_bench',
dependencies: [eo, eina],
)
-benchmark('eo', eo_bench)
+benchmark('eo', eo_bench,
+ args: run_command('date','+%F_%s').stdout()
+)