diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-03-04 05:52:33 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-04 05:52:33 -0500 |
commit | 2ecb26c9ae093a16c1f79b3b81ca0c66c054f579 (patch) | |
tree | 00349a92ecab80359e33a9f391cfa126691a2558 /run_project_tests.py | |
parent | b3aaab3a038f9139f5735d590b5036c25fd033a0 (diff) | |
parent | 303b8819ecc4adf5268d0a73aa25aa1540b3c2bc (diff) | |
download | meson-2ecb26c9ae093a16c1f79b3b81ca0c66c054f579.zip meson-2ecb26c9ae093a16c1f79b3b81ca0c66c054f579.tar.gz meson-2ecb26c9ae093a16c1f79b3b81ca0c66c054f579.tar.bz2 |
Merge pull request #1444 from mesonbuild/pdbinstall
Install PDB files. Closes #1442.
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-x | run_project_tests.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/run_project_tests.py b/run_project_tests.py index f87a121..1457432 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -181,6 +181,9 @@ def validate_install(srcdir, installdir): # Check if there are any unexpected files found = get_relative_files_list_from_dir(installdir) for fname in found: + # Windows-specific tests check for the existence of installed PDB + # files, but common tests do not, for obvious reasons. Ignore any + # extra PDB files found. if fname not in expected and not fname.endswith('.pdb'): ret_msg += 'Extra file {0} found.\n'.format(fname) return ret_msg |