diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2016-06-24 10:47:18 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2016-09-11 10:10:48 +0530 |
commit | 91c5f07a8efe550c4b64c72d0914108239fcc1c6 (patch) | |
tree | 744a2def6ac593a9e747ba74ed396826a31716bd /run_tests.py | |
parent | 0840a908f235ac3a4df271e2cd262cad0cfc5cbd (diff) | |
download | meson-91c5f07a8efe550c4b64c72d0914108239fcc1c6.zip meson-91c5f07a8efe550c4b64c72d0914108239fcc1c6.tar.gz meson-91c5f07a8efe550c4b64c72d0914108239fcc1c6.tar.bz2 |
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.
Diffstat (limited to 'run_tests.py')
-rwxr-xr-x | run_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |