diff options
| author | Xavier Claessens <xavier.claessens@collabora.com> | 2021-08-28 21:05:01 -0400 |
|---|---|---|
| committer | Xavier Claessens <xclaesse@gmail.com> | 2021-08-30 14:00:54 -0400 |
| commit | 88a1bed81b7d9ad262d3b511eb20444c609db235 (patch) | |
| tree | c2de0d913dd6bc3bef7f5fc7e6d76c193d8e9c0c /test cases | |
| parent | 276063a1d2132940ec4a93623f1a5d01266bcd80 (diff) | |
| download | meson-88a1bed81b7d9ad262d3b511eb20444c609db235.tar.gz | |
decorators: Make unknown kwarg fatal
Diffstat (limited to 'test cases')
| -rw-r--r-- | test cases/common/129 build by default/meson.build | 1 | ||||
| -rw-r--r-- | test cases/frameworks/7 gnome/gir/meson.build | 4 | ||||
| -rw-r--r-- | test cases/unit/22 warning location/meson.build | 2 |
3 files changed, 1 insertions, 6 deletions
diff --git a/test cases/common/129 build by default/meson.build b/test cases/common/129 build by default/meson.build index b28b6347c..b797f76e9 100644 --- a/test cases/common/129 build by default/meson.build +++ b/test cases/common/129 build by default/meson.build @@ -9,7 +9,6 @@ executable('fooprog', 'foo.c', executable('barprog', 'foo.c', build_by_default : false, - build_always : true, ) comp = files('mygen.py') diff --git a/test cases/frameworks/7 gnome/gir/meson.build b/test cases/frameworks/7 gnome/gir/meson.build index 64c49f729..fbff2060e 100644 --- a/test cases/frameworks/7 gnome/gir/meson.build +++ b/test cases/frameworks/7 gnome/gir/meson.build @@ -46,10 +46,6 @@ gnome.generate_gir( dependencies : [[fake_dep, dep1_dep]], install : true, build_by_default : true, - # Test that unknown kwargs do not crash the parser. - # Unknown kwargs will eventually become a hard error. - # Once that happens remove this. - unknown_kwarg : true, ) test('gobject introspection/c', girexe) diff --git a/test cases/unit/22 warning location/meson.build b/test cases/unit/22 warning location/meson.build index 52a93d18c..132939e04 100644 --- a/test cases/unit/22 warning location/meson.build +++ b/test cases/unit/22 warning location/meson.build @@ -1,4 +1,4 @@ -project('warning location', 'c', invalid: 'cheese') +project('warning location', 'c') a = library('liba', 'a.c') b = library('libb', 'b.c') executable('main', 'main.c', link_with: a, link_with: b) |
