summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPekka Paalanen <pekka.paalanen@collabora.com>2019-02-06 14:03:21 +0200
committerDaniel Stone <daniel@fooishbar.org>2019-02-15 19:21:26 +0000
commitc58648b0df60410bbb731aef28999eefa020778f (patch)
tree843aa36ea4c28535ea78069f830430eedc51afe2
parentfcd9f674674731c7d37871034c5e9fe5166e248b (diff)
downloadweston-c58648b0df60410bbb731aef28999eefa020778f.tar.gz
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 <pekka.paalanen@collabora.com>
-rw-r--r--tests/meson.build2
1 files changed, 1 insertions, 1 deletions
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