diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2022-06-14 22:55:12 -0400 |
---|---|---|
committer | Eli Schwartz <eschwartz@archlinux.org> | 2022-06-17 14:33:02 -0400 |
commit | ca52dac38ba2cfcbfb47a7b2fa8733b73cea070a (patch) | |
tree | 23449788a2b000d3e718a80ba2e81d37e390a9d4 /test cases | |
parent | b13a95c30156c0c9ebf11ceb664acee08a835b2c (diff) | |
download | meson-ca52dac38ba2cfcbfb47a7b2fa8733b73cea070a.zip meson-ca52dac38ba2cfcbfb47a7b2fa8733b73cea070a.tar.gz meson-ca52dac38ba2cfcbfb47a7b2fa8733b73cea070a.tar.bz2 |
refactor logic for parsing dependency variables into type_checking module
We will momentarily use this to implement typed_kwargs, but not for all
usage sites.
Diffstat (limited to 'test cases')
3 files changed, 3 insertions, 3 deletions
diff --git a/test cases/failing/46 pkgconfig variables zero length/test.json b/test cases/failing/46 pkgconfig variables zero length/test.json index ae8ba2b..91c6ea1 100644 --- a/test cases/failing/46 pkgconfig variables zero length/test.json +++ b/test cases/failing/46 pkgconfig variables zero length/test.json @@ -1,7 +1,7 @@ { "stdout": [ { - "line": "test cases/failing/46 pkgconfig variables zero length/meson.build:8:5: ERROR: Empty variable name or value" + "line": "test cases/failing/46 pkgconfig variables zero length/meson.build:8:5: ERROR: empty variable name" } ] } diff --git a/test cases/failing/47 pkgconfig variables zero length value/test.json b/test cases/failing/47 pkgconfig variables zero length value/test.json index e963830..29c0541 100644 --- a/test cases/failing/47 pkgconfig variables zero length value/test.json +++ b/test cases/failing/47 pkgconfig variables zero length value/test.json @@ -1,7 +1,7 @@ { "stdout": [ { - "line": "test cases/failing/47 pkgconfig variables zero length value/meson.build:8:5: ERROR: Empty variable name or value" + "line": "test cases/failing/47 pkgconfig variables zero length value/meson.build:8:5: ERROR: empty variable value" } ] } diff --git a/test cases/failing/48 pkgconfig variables not key value/test.json b/test cases/failing/48 pkgconfig variables not key value/test.json index decbe71..b32e886 100644 --- a/test cases/failing/48 pkgconfig variables not key value/test.json +++ b/test cases/failing/48 pkgconfig variables not key value/test.json @@ -1,7 +1,7 @@ { "stdout": [ { - "line": "test cases/failing/48 pkgconfig variables not key value/meson.build:8:5: ERROR: Variable 'this_should_be_key_value' must have a value separated by equals sign." + "line": "test cases/failing/48 pkgconfig variables not key value/meson.build:8:5: ERROR: variable 'this_should_be_key_value' must have a value separated by equals sign." } ] } |