summaryrefslogtreecommitdiff
path: root/src/benchmarks
diff options
context:
space:
mode:
authorMarcel Hollerbach <mail@marcel-hollerbach.de>2018-11-25 12:49:15 +0100
committerMarcel Hollerbach <mail@marcel-hollerbach.de>2018-12-03 19:22:28 +0100
commit883092816d8475d024b92542bfcf9cd854c08c7e (patch)
tree30481a48503ee86e97e26e28237f41f5bbef5633 /src/benchmarks
parentc1dd57d210c7c0b099b00984855600092b9fe660 (diff)
downloadefl-883092816d8475d024b92542bfcf9cd854c08c7e.tar.gz
meson: fix running of benchmark
Differential Revision: https://phab.enlightenment.org/D7362
Diffstat (limited to 'src/benchmarks')
-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()
+)