diff options
author | Sam Clegg <sbc@chromium.org> | 2018-06-05 10:13:18 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-05 10:13:18 -0700 |
commit | 465b18b4a1f9c0d44d927d22a1291ca89c29a896 (patch) | |
tree | 202d3a7c6fc4fcb0067fcbae9ef676c94df9eb27 /test/llvm_autogenerated/llvm-to-s.py | |
parent | bfae82fc4107a8115b41db4a2bd3d9204a92ad16 (diff) | |
download | binaryen-465b18b4a1f9c0d44d927d22a1291ca89c29a896.tar.gz binaryen-465b18b4a1f9c0d44d927d22a1291ca89c29a896.tar.bz2 binaryen-465b18b4a1f9c0d44d927d22a1291ca89c29a896.zip |
Increase flake8 coverage (#1586)
Diffstat (limited to 'test/llvm_autogenerated/llvm-to-s.py')
-rwxr-xr-x | test/llvm_autogenerated/llvm-to-s.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/llvm_autogenerated/llvm-to-s.py b/test/llvm_autogenerated/llvm-to-s.py index cbd6fec5b..d3c95465d 100755 --- a/test/llvm_autogenerated/llvm-to-s.py +++ b/test/llvm_autogenerated/llvm-to-s.py @@ -69,14 +69,14 @@ def main(args): for ll_test in tests: name_noext = os.path.splitext(os.path.basename(ll_test))[0] - BLACKLIST = ['inline-asm', # inline asm containing invalid syntax - 'dbgvalue', # external global symbol - 'returned', # external global symbol - 'vtable', # external global symbol - 'offset-folding', # external global symbol - 'address-offsets', # external global symbol - 'memory-addr64', # wasm64 - 'simd-arith', # No SIMD in binaryen yet + BLACKLIST = ['inline-asm', # inline asm containing invalid syntax + 'dbgvalue', # external global symbol + 'returned', # external global symbol + 'vtable', # external global symbol + 'offset-folding', # external global symbol + 'address-offsets', # external global symbol + 'memory-addr64', # wasm64 + 'simd-arith', # No SIMD in binaryen yet ] if name_noext in BLACKLIST: continue |