From 2930d3bda64ef02d9baaee2165690e3eb4ad9455 Mon Sep 17 00:00:00 2001 From: Jon Turney Date: Tue, 4 Apr 2017 00:11:53 +0100 Subject: Ignore missing .pdb files when not using MSVS This fixes 'test cases/windows/1 basic' on Cygwin --- run_project_tests.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/run_project_tests.py b/run_project_tests.py index cbf8f08..dc05524 100755 --- a/run_project_tests.py +++ b/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) -- cgit v1.1