summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIngvar Stepanyan <me@rreverser.com>2019-09-03 22:35:01 +0200
committerAlon Zakai <azakai@google.com>2019-09-03 13:35:01 -0700
commit445881f6c8a28faae22a764c96449be86b48a96b (patch)
tree476de2c02175c039e4aa321442b75ff4e2f4163a
parentd4171920b4d87f23e9e962df09b34278416abb02 (diff)
downloadbinaryen-445881f6c8a28faae22a764c96449be86b48a96b.tar.gz
binaryen-445881f6c8a28faae22a764c96449be86b48a96b.tar.bz2
binaryen-445881f6c8a28faae22a764c96449be86b48a96b.zip
Ignore .manifest files in check.py (#2324)
These files are produced alongside .exe when CMake is used on Windows. Subsequently, check.py finds, tries to execute them and fails since they're not excluded.
-rwxr-xr-xcheck.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/check.py b/check.py
index 6cdbb2a44..18b336dfc 100755
--- a/check.py
+++ b/check.py
@@ -48,7 +48,7 @@ if options.interpreter:
def run_help_tests():
print('[ checking --help is useful... ]\n')
- not_executable_suffix = ['.txt', '.js', '.ilk', '.pdb', '.dll', '.wasm']
+ not_executable_suffix = ['.txt', '.js', '.ilk', '.pdb', '.dll', '.wasm', '.manifest']
bin_files = [os.path.join(options.binaryen_bin, f) for f in os.listdir(options.binaryen_bin)]
executables = [f for f in bin_files if os.path.isfile(f) and not any(f.endswith(s) for s in not_executable_suffix)]
executables = sorted(executables)