From c58648b0df60410bbb731aef28999eefa020778f Mon Sep 17 00:00:00 2001 From: Pekka Paalanen Date: Wed, 6 Feb 2019 14:03:21 +0200 Subject: [PATCH] meson: IVI plugin tests do not use config If Weston is not installed, running ivi-layout test would fail on lots of image files not found which presumably causes the creation of some ivi surfaces to fail, leading to an assert failure. Looking at the test setup in weston-tests-env, these IVI plugin tests are supposed to run with --no-config instead. Fixes: https://gitlab.freedesktop.org/wayland/weston/issues/195 Signed-off-by: Pekka Paalanen --- tests/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/meson.build b/tests/meson.build index 53c55273..03692f47 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -371,7 +371,7 @@ foreach t : tests_weston_plugin # FIXME: Get this from the array ... ? if t.get(0).startswith('ivi-') - args_t += [ '--config=@0@/../ivi-shell/weston-ivi-test.ini'.format(meson.current_build_dir()) ] + args_t += [ '--no-config' ] args_t += [ '--modules=@1@,@0@'.format(exe_plugin_test.full_path(),exe_t.full_path()) ] args_t += [ '--shell=ivi-shell.so' ] else