From de26ab9538706cde2ff1e57923c843ae3840230d Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Thu, 13 Jan 2022 13:47:07 +0530 Subject: [PATCH] tests: Add a partial test for gtk_doc check: kwarg check: true is needed for an actual regression test, but that requires a pedantically correct gtk-doc configuration, which I attempted to do and failed. So let's just put check: false so we get *some* coverage: just that typed_kwargs accepts the argument. Related to https://github.com/mesonbuild/meson/pull/9807 --- test cases/frameworks/10 gtk-doc/doc/foobar1/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test cases/frameworks/10 gtk-doc/doc/foobar1/meson.build b/test cases/frameworks/10 gtk-doc/doc/foobar1/meson.build index 027414ffd..2af9670f4 100644 --- a/test cases/frameworks/10 gtk-doc/doc/foobar1/meson.build +++ b/test cases/frameworks/10 gtk-doc/doc/foobar1/meson.build @@ -11,4 +11,5 @@ gnome.gtkdoc('foobar', # Manually written types file for regression test: # https://github.com/mesonbuild/meson/issues/8744 gobject_typesfile: 'foobar.types', - install : true) + install : true, + check: false)