diff options
author | Thomas Lively <tlively@google.com> | 2023-07-27 15:44:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-27 12:44:47 -0700 |
commit | 5d787c8d89915e257bd11d294ad5cbf882bac2e1 (patch) | |
tree | 56c1797d37044bc67f5aa86a9360911af956bbd9 /scripts | |
parent | 5c7c256620c11c120f5db7feb9c77bdccd55ee3c (diff) | |
download | binaryen-5d787c8d89915e257bd11d294ad5cbf882bac2e1.tar.gz binaryen-5d787c8d89915e257bd11d294ad5cbf882bac2e1.tar.bz2 binaryen-5d787c8d89915e257bd11d294ad5cbf882bac2e1.zip |
[NFC] Port passes remove-unused-brs_all-features.wast to lit (#5843)
Port the test automatically using the port_passes_tests_to_lit.py script. As a
drive-by, fix a typo in the script as well.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/port_passes_tests_to_lit.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/port_passes_tests_to_lit.py b/scripts/port_passes_tests_to_lit.py index 1ac5ac838..659cc20d2 100755 --- a/scripts/port_passes_tests_to_lit.py +++ b/scripts/port_passes_tests_to_lit.py @@ -91,7 +91,7 @@ def port_test(args, test): continue os.remove(f) if args.git_add: - subprocess.rcheck_call(['git', 'add', f]) + subprocess.check_call(['git', 'add', f]) if args.git_add: subprocess.check_call(['git', 'add', dest]) |