From c9b6898afd796a2cdc17ce59a5508fd089365720 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Thu, 9 Feb 2023 13:04:59 +1000 Subject: [PATCH] test: fix pytest loading liboeffis.so Apparently this test doesn't run in the CI... --- test/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/meson.build b/test/meson.build index eff5d75..6d7fafb 100644 --- a/test/meson.build +++ b/test/meson.build @@ -48,7 +48,7 @@ if build_oeffis dependencies: deps_liboeffis + [dep_unittest])) env = environment() - env.set('LD_LIBRARY_PATH', meson.current_build_dir()) + env.set('LD_LIBRARY_PATH', meson.project_build_root()) pymod = import('python') pymod.find_installation('python3', modules: ['pytest', 'attr', 'dbusmock']) pytest = find_program('pytest-3', 'pytest')