diff options
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 |