diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2022-07-14 13:12:25 -0700 |
---|---|---|
committer | Eli Schwartz <eschwartz93@gmail.com> | 2022-08-17 16:25:36 -0400 |
commit | a78992dd81b4bd1673e4815ff26acd694ff77f68 (patch) | |
tree | 80c6dfddc3a1c8cfa45903d23c3ff01b3862051a /unittests/allplatformstests.py | |
parent | c32f83a829b6b10a0cbc191c1368b563d4582c28 (diff) | |
download | meson-a78992dd81b4bd1673e4815ff26acd694ff77f68.zip meson-a78992dd81b4bd1673e4815ff26acd694ff77f68.tar.gz meson-a78992dd81b4bd1673e4815ff26acd694ff77f68.tar.bz2 |
interpreter: move handling of module stability to interpreter
Thanks to `ModuleInfo`, all modules are just named `foo.py` instead of
`unstable_foo.py`, which simplifies the import method a bit. This also
allows for accurate FeatureNew/FeatureDeprecated use, as we know when
the module was added and if/when it was stabilized.
Diffstat (limited to 'unittests/allplatformstests.py')
-rw-r--r-- | unittests/allplatformstests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/allplatformstests.py b/unittests/allplatformstests.py index 745e67b..3238a39 100644 --- a/unittests/allplatformstests.py +++ b/unittests/allplatformstests.py @@ -1929,7 +1929,7 @@ class AllPlatformTests(BasePlatformTests): r'sub' + os.path.sep + r'meson.build:3: WARNING: Keyword argument "link_with" defined multiple times.', r'meson.build:6: WARNING: a warning of some sort', r'sub' + os.path.sep + r'meson.build:4: WARNING: subdir warning', - r'meson.build:7: WARNING: Module unstable-simd has no backwards or forwards compatibility and might not exist in future releases.', + r'meson.build:7: WARNING: Module SIMD has no backwards or forwards compatibility and might not exist in future releases.', r"meson.build:11: WARNING: The variable(s) 'MISSING' in the input file 'conf.in' are not present in the given configuration data.", ]: with self.subTest(expected): |