Ignore missing .pdb files when not using MSVS

This fixes 'test cases/windows/1 basic' on Cygwin
pull/1567/head
Jon Turney 8 years ago
parent 85f989f744
commit 2930d3bda6
  1. 3
      run_project_tests.py

@ -244,6 +244,9 @@ def validate_install(srcdir, installdir):
expected[fname] = True
for (fname, found) in expected.items():
if not found:
# Ignore missing PDB files if we aren't using cl
if fname.endswith('.pdb') and compiler != 'cl':
continue
ret_msg += 'Expected file {0} missing.\n'.format(fname)
# Check if there are any unexpected files
found = get_relative_files_list_from_dir(installdir)

Loading…
Cancel
Save