summaryrefslogtreecommitdiff
path: root/benchmarks
diff options
context:
space:
mode:
authorArkadiusz Hiler <arkadiusz.hiler@intel.com>2019-02-19 12:51:43 +0200
committerArkadiusz Hiler <arkadiusz.hiler@intel.com>2019-02-20 08:38:19 +0200
commitdaa38baa64d3a049e9e0d00ec8d763884ac7d187 (patch)
treea08f50ebd515a4d99e5b49a8c29233522d6a4366 /benchmarks
parentcc48c23175a8439eca797644f1ded54de3c4129b (diff)
benchmarks/meson: Stop renaming benchmarks
Meson 0.46.0 fixes the issue that forced us to do the renaming. Cc: Daniel Vetter <daniel@ffwll.ch> Cc: Chris Wilson <chris@chris-wilson.co.uk> Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com> Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'benchmarks')
-rw-r--r--benchmarks/meson.build6
1 files changed, 2 insertions, 4 deletions
diff --git a/benchmarks/meson.build b/benchmarks/meson.build
index baf1243d..397f3b8d 100644
--- a/benchmarks/meson.build
+++ b/benchmarks/meson.build
@@ -30,15 +30,13 @@ endif
benchmarksdir = join_paths(libexecdir, 'benchmarks')
foreach prog : benchmark_progs
- # FIXME meson doesn't like binaries with the same name
- # meanwhile just suffix with _bench
- executable(prog + '_bench', prog + '.c',
+ executable(prog, prog + '.c',
install : true,
install_dir : benchmarksdir,
dependencies : igt_deps)
endforeach
-executable('gem_wsim_bench', 'gem_wsim.c',
+executable('gem_wsim', 'gem_wsim.c',
install : true,
install_dir : benchmarksdir,
dependencies : igt_deps + [ lib_igt_perf ])