summaryrefslogtreecommitdiff
path: root/scripts/port_passes_tests_to_lit.py
diff options
context:
space:
mode:
authorSam Clegg <sbc@chromium.org>2022-08-12 09:45:19 -0700
committerGitHub <noreply@github.com>2022-08-12 09:45:19 -0700
commit48d5a5d529cf3e51605a5e50a746603b74a72e97 (patch)
tree0e0c5d145fb5d5f4f6c23c061fe180646b10005a /scripts/port_passes_tests_to_lit.py
parent3b1cc0b7d297086ddec24644722df1839e0579e1 (diff)
downloadbinaryen-48d5a5d529cf3e51605a5e50a746603b74a72e97.tar.gz
binaryen-48d5a5d529cf3e51605a5e50a746603b74a72e97.tar.bz2
binaryen-48d5a5d529cf3e51605a5e50a746603b74a72e97.zip
Fix name of port_passes_tests_to_lit.py script. NFC (#4902)
I was reading these tests and failing to find the names script.
Diffstat (limited to 'scripts/port_passes_tests_to_lit.py')
-rwxr-xr-xscripts/port_passes_tests_to_lit.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/port_passes_tests_to_lit.py b/scripts/port_passes_tests_to_lit.py
index b2a1fd982..1ac5ac838 100755
--- a/scripts/port_passes_tests_to_lit.py
+++ b/scripts/port_passes_tests_to_lit.py
@@ -67,8 +67,8 @@ def port_test(args, test):
run_line = (f';; RUN: foreach %s %t wasm-opt {" ".join(opts)} -S -o -'
' | filecheck %s')
- notice = (f';; NOTE: This test was ported using port_test.py and could be'
- ' cleaned up.')
+ notice = (f';; NOTE: This test was ported using'
+ ' port_passes_tests_to_lit.py and could be cleaned up.')
with open(test, 'r') as src_file:
with open(dest, 'w') as dest_file: