diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2017-03-03 15:08:01 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2017-03-03 15:52:31 +0530 |
commit | 2340fd3d8aa5c6ed829ff3bda8a64137ead4b8eb (patch) | |
tree | ba757effaad395bc0af5a637c5f714bbd2725abf /run_project_tests.py | |
parent | 0c957b75c69269cb5f7a0d82b2477b7be0fc62e2 (diff) | |
download | meson-2340fd3d8aa5c6ed829ff3bda8a64137ead4b8eb.zip meson-2340fd3d8aa5c6ed829ff3bda8a64137ead4b8eb.tar.gz meson-2340fd3d8aa5c6ed829ff3bda8a64137ead4b8eb.tar.bz2 |
tests/windows: Tests for #1444
Check that pdb files are installed
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 |