From 2340fd3d8aa5c6ed829ff3bda8a64137ead4b8eb Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Fri, 3 Mar 2017 15:08:01 +0530 Subject: tests/windows: Tests for #1444 Check that pdb files are installed --- run_project_tests.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'run_project_tests.py') diff --git a/run_project_tests.py b/run_project_tests.py index f87a12185..145743229 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 -- cgit v1.2.3