diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2016-09-11 13:04:55 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-11 13:04:55 +0300 |
commit | c334eeda76c1c4a5d7a150c7af5976ea7a73c7ad (patch) | |
tree | 1ca30772bb2a023ae65b0bbaf70a3cc2e43bf3a8 /run_tests.py | |
parent | 167deda6658315a7bbc553757b130be70ba827e2 (diff) | |
parent | 91c5f07a8efe550c4b64c72d0914108239fcc1c6 (diff) | |
download | meson-c334eeda76c1c4a5d7a150c7af5976ea7a73c7ad.zip meson-c334eeda76c1c4a5d7a150c7af5976ea7a73c7ad.tar.gz meson-c334eeda76c1c4a5d7a150c7af5976ea7a73c7ad.tar.bz2 |
Merge pull request #684 from mesonbuild/pdb
Create pdb files with MSVC
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 48f1230..b57dd39 100755 --- a/run_tests.py +++ b/run_tests.py @@ -169,7 +169,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 |