aboutsummaryrefslogtreecommitdiff
path: root/test cases
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2022-01-13 13:47:07 +0530
committerNirbheek Chauhan <nirbheek.chauhan@gmail.com>2022-01-15 00:38:14 +0530
commitf35e2fcb3e4709c0d341cd8c649a90d0b6856b3c (patch)
tree07b5631a77519680f6f3a3e766af1bee7b559c67 /test cases
parentca0c75777042398a0f52f59054dbaf99c8eeb745 (diff)
downloadmeson-f35e2fcb3e4709c0d341cd8c649a90d0b6856b3c.zip
meson-f35e2fcb3e4709c0d341cd8c649a90d0b6856b3c.tar.gz
meson-f35e2fcb3e4709c0d341cd8c649a90d0b6856b3c.tar.bz2
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
Diffstat (limited to 'test cases')
-rw-r--r--test cases/frameworks/10 gtk-doc/doc/foobar1/meson.build3
1 files changed, 2 insertions, 1 deletions
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 027414f..2af9670 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)