diff options
author | Xavier Claessens <xavier.claessens@collabora.com> | 2022-10-26 10:25:29 -0400 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2022-11-02 14:53:35 +0200 |
commit | f5871e240d6d06e7e8ab0f0ded5d944e8b780cd3 (patch) | |
tree | a4d9f10a769bb3cada1f4db07be7617e163edd58 /unittests | |
parent | 43e274c73365ed7c84553af4c51369db8714871e (diff) | |
download | meson-f5871e240d6d06e7e8ab0f0ded5d944e8b780cd3.zip meson-f5871e240d6d06e7e8ab0f0ded5d944e8b780cd3.tar.gz meson-f5871e240d6d06e7e8ab0f0ded5d944e8b780cd3.tar.bz2 |
backends: Try guessing install tag for all installed files
It was only trying to guess install tag, and log missing tags, for files
installed by install_data(). Do it also for all other files, especially
custom_taget() that commonly installs generated headers.
Diffstat (limited to 'unittests')
-rw-r--r-- | unittests/allplatformstests.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/unittests/allplatformstests.py b/unittests/allplatformstests.py index d90153c..1ecbf18 100644 --- a/unittests/allplatformstests.py +++ b/unittests/allplatformstests.py @@ -4054,6 +4054,11 @@ class AllPlatformTests(BasePlatformTests): Path(installpath, 'usr/lib/libstatic.a'), Path(installpath, 'usr/lib/libboth.a'), Path(installpath, 'usr/lib/libboth2.a'), + Path(installpath, 'usr/include/ct-header1.h'), + Path(installpath, 'usr/include/ct-header3.h'), + Path(installpath, 'usr/include/subdir-devel'), + Path(installpath, 'usr/include/custom_files'), + Path(installpath, 'usr/include/custom_files/data.txt'), } if cc.get_id() in {'msvc', 'clang-cl'}: |