From 3ca5a75ab0b45cc8667d1dcf06e7fe5a300ee4ed Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Mon, 28 Oct 2024 03:11:24 +0100 Subject: [PATCH] testsuite: depend on gir and libgtk in introspection test We also don't need to LD_PRELOAD anymore if we do that. --- testsuite/introspection/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testsuite/introspection/meson.build b/testsuite/introspection/meson.build index a65965d633..f5993f657d 100644 --- a/testsuite/introspection/meson.build +++ b/testsuite/introspection/meson.build @@ -2,10 +2,10 @@ env = environment() env.prepend('GI_TYPELIB_PATH', project_build_root / 'gtk', ) -env.prepend('LD_PRELOAD', project_build_root / 'gtk' / 'libgtk-4.so') test('api', find_program('api.py', dirs: meson.current_source_dir()), suite: ['introspection'], + depends: [ gtk_gir, libgtk ], env: env, )