From 91c5f07a8efe550c4b64c72d0914108239fcc1c6 Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Fri, 24 Jun 2016 10:47:18 +0530 Subject: 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. --- run_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_tests.py b/run_tests.py index 34258d8..b71ab6d 100755 --- a/run_tests.py +++ b/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 -- cgit v1.1