run_tests.py: Ignore .pdb files while validating install

Their presence depends on build options and compiler, and we don't
currently have the test infrastructure to deal with this.
pull/684/head
Nirbheek Chauhan 9 years ago
parent 0840a908f2
commit 91c5f07a8e
  1. 2
      run_tests.py

@ -168,7 +168,7 @@ def validate_install(srcdir, installdir):
# Check if there are any unexpected files
found = get_relative_files_list_from_dir(installdir)
for fname in found:
if fname not in expected:
if fname not in expected and not fname.endswith('.pdb'):
ret_msg += 'Extra file {0} found.\n'.format(fname)
return ret_msg

Loading…
Cancel
Save