From 0eeb6ccb42dc1212e5fb17102b4eb36f236d4eff Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Fri, 21 Mar 2025 17:36:43 -0600 Subject: [PATCH] [perf] Bikeshedding --- {test/draw => perf}/hb-draw-all.c | 0 {test/paint => perf}/hb-paint-all.c | 0 perf/meson.build | 14 ++++++++++++++ test/draw/meson.build | 6 ------ test/meson.build | 2 -- test/paint/meson.build | 6 ------ 6 files changed, 14 insertions(+), 14 deletions(-) rename {test/draw => perf}/hb-draw-all.c (100%) rename {test/paint => perf}/hb-paint-all.c (100%) delete mode 100644 test/draw/meson.build delete mode 100644 test/paint/meson.build diff --git a/test/draw/hb-draw-all.c b/perf/hb-draw-all.c similarity index 100% rename from test/draw/hb-draw-all.c rename to perf/hb-draw-all.c diff --git a/test/paint/hb-paint-all.c b/perf/hb-paint-all.c similarity index 100% rename from test/paint/hb-paint-all.c rename to perf/hb-paint-all.c diff --git a/perf/meson.build b/perf/meson.build index 2588fe50a..605b8e9a4 100644 --- a/perf/meson.build +++ b/perf/meson.build @@ -38,3 +38,17 @@ foreach source : benchmarks_subset install: false, ), workdir: meson.current_source_dir() / '..', timeout: 100) endforeach + +hb_draw_all = executable('hb-draw-all', ['hb-draw-all.c'], + cpp_args: cpp_args, + include_directories: [incconfig, incsrc], + link_with: [libharfbuzz], +) +meson.override_find_program('hb-draw-all', hb_draw_all) + +hb_paint_all = executable('hb-paint-all', ['hb-paint-all.c'], + cpp_args: cpp_args, + include_directories: [incconfig, incsrc], + link_with: [libharfbuzz], +) +meson.override_find_program('hb-paint-all', hb_paint_all) diff --git a/test/draw/meson.build b/test/draw/meson.build deleted file mode 100644 index 789a2753e..000000000 --- a/test/draw/meson.build +++ /dev/null @@ -1,6 +0,0 @@ -hb_draw_all = executable('hb-draw-all', ['hb-draw-all.c'], - cpp_args: cpp_args, - include_directories: [incconfig, incsrc], - link_with: [libharfbuzz], -) -meson.override_find_program('hb-draw-all', hb_draw_all) diff --git a/test/meson.build b/test/meson.build index d2e3f5b29..c9a3ec715 100644 --- a/test/meson.build +++ b/test/meson.build @@ -3,5 +3,3 @@ subdir('fuzzing') subdir('threads') subdir('shape') subdir('api') -subdir('draw') -subdir('paint') diff --git a/test/paint/meson.build b/test/paint/meson.build deleted file mode 100644 index c0e3f76ea..000000000 --- a/test/paint/meson.build +++ /dev/null @@ -1,6 +0,0 @@ -hb_paint_all = executable('hb-paint-all', ['hb-paint-all.c'], - cpp_args: cpp_args, - include_directories: [incconfig, incsrc], - link_with: [libharfbuzz], -) -meson.override_find_program('hb-paint-all', hb_paint_all)