aboutsummaryrefslogtreecommitdiff
path: root/run_project_tests.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2017-03-04 05:52:33 -0500
committerGitHub <noreply@github.com>2017-03-04 05:52:33 -0500
commit2ecb26c9ae093a16c1f79b3b81ca0c66c054f579 (patch)
tree00349a92ecab80359e33a9f391cfa126691a2558 /run_project_tests.py
parentb3aaab3a038f9139f5735d590b5036c25fd033a0 (diff)
parent303b8819ecc4adf5268d0a73aa25aa1540b3c2bc (diff)
downloadmeson-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-xrun_project_tests.py3
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