diff options
author | Sam Clegg <sbc@chromium.org> | 2020-02-11 18:25:31 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-11 18:25:31 -0800 |
commit | 4dceacb6ff662e382f1385ec038b9fdd062c0ed0 (patch) | |
tree | 6816ac7f0dc077500ab116051385d407c8a83d89 /scripts/test | |
parent | 5cfac758ce4086300f93f29dd1584346f9ad030b (diff) | |
download | binaryen-4dceacb6ff662e382f1385ec038b9fdd062c0ed0.tar.gz binaryen-4dceacb6ff662e382f1385ec038b9fdd062c0ed0.tar.bz2 binaryen-4dceacb6ff662e382f1385ec038b9fdd062c0ed0.zip |
Convert remaining python scripts to run under python3 (#2643)
Diffstat (limited to 'scripts/test')
-rwxr-xr-x | scripts/test/asm2wasm.py | 2 | ||||
-rwxr-xr-x | scripts/test/generate_lld_tests.py | 2 | ||||
-rwxr-xr-x | scripts/test/lld.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/scripts/test/asm2wasm.py b/scripts/test/asm2wasm.py index 74f34e789..0c5abb828 100755 --- a/scripts/test/asm2wasm.py +++ b/scripts/test/asm2wasm.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # # Copyright 2017 WebAssembly Community Group participants # diff --git a/scripts/test/generate_lld_tests.py b/scripts/test/generate_lld_tests.py index 1f9324a88..25a72f885 100755 --- a/scripts/test/generate_lld_tests.py +++ b/scripts/test/generate_lld_tests.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # # Copyright 2017 WebAssembly Community Group participants # diff --git a/scripts/test/lld.py b/scripts/test/lld.py index 992a35655..6256ea003 100755 --- a/scripts/test/lld.py +++ b/scripts/test/lld.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright 2017 WebAssembly Community Group participants # # Licensed under the Apache License, Version 2.0 (the "License"); |