summaryrefslogtreecommitdiff
path: root/scripts/test
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/test')
-rwxr-xr-xscripts/test/lld.py30
1 files changed, 15 insertions, 15 deletions
diff --git a/scripts/test/lld.py b/scripts/test/lld.py
index 46e1023ec..2f2ebbf20 100755
--- a/scripts/test/lld.py
+++ b/scripts/test/lld.py
@@ -32,10 +32,10 @@ def args_for_finalize(filename):
def test_wasm_emscripten_finalize():
print('\n[ checking wasm-emscripten-finalize testcases... ]\n')
- for wast_path in shared.get_tests(shared.get_test_dir('lld'), ['.wast']):
- print('..', wast_path)
- is_passive = '.passive.' in wast_path
- mem_file = wast_path + '.mem'
+ for wat_path in shared.get_tests(shared.get_test_dir('lld'), ['.wat']):
+ print('..', wat_path)
+ is_passive = '.passive.' in wat_path
+ mem_file = wat_path + '.mem'
extension_arg_map = {
'.out': [],
}
@@ -44,13 +44,13 @@ def test_wasm_emscripten_finalize():
'.mem.out': ['--separate-data-segments', mem_file],
})
for ext, ext_args in extension_arg_map.items():
- expected_file = wast_path + ext
+ expected_file = wat_path + ext
if ext != '.out' and not os.path.exists(expected_file):
continue
- cmd = shared.WASM_EMSCRIPTEN_FINALIZE + [wast_path, '-S'] + \
+ cmd = shared.WASM_EMSCRIPTEN_FINALIZE + [wat_path, '-S'] + \
ext_args
- cmd += args_for_finalize(os.path.basename(wast_path))
+ cmd += args_for_finalize(os.path.basename(wat_path))
actual = support.run_command(cmd)
if not os.path.exists(expected_file):
@@ -61,7 +61,7 @@ def test_wasm_emscripten_finalize():
if ext == '.mem.out':
with open(mem_file) as mf:
mem = mf.read()
- shared.fail_if_not_identical_to_file(mem, wast_path +
+ shared.fail_if_not_identical_to_file(mem, wat_path +
'.mem.mem')
os.remove(mem_file)
@@ -69,10 +69,10 @@ def test_wasm_emscripten_finalize():
def update_lld_tests():
print('\n[ updatring wasm-emscripten-finalize testcases... ]\n')
- for wast_path in shared.get_tests(shared.get_test_dir('lld'), ['.wast']):
- print('..', wast_path)
- is_passive = '.passive.' in wast_path
- mem_file = wast_path + '.mem'
+ for wat_path in shared.get_tests(shared.get_test_dir('lld'), ['.wat']):
+ print('..', wat_path)
+ is_passive = '.passive.' in wat_path
+ mem_file = wat_path + '.mem'
extension_arg_map = {
'.out': [],
}
@@ -81,12 +81,12 @@ def update_lld_tests():
'.mem.out': ['--separate-data-segments', mem_file + '.mem'],
})
for ext, ext_args in extension_arg_map.items():
- out_path = wast_path + ext
+ out_path = wat_path + ext
if ext != '.out' and not os.path.exists(out_path):
continue
- cmd = shared.WASM_EMSCRIPTEN_FINALIZE + [wast_path, '-S'] + \
+ cmd = shared.WASM_EMSCRIPTEN_FINALIZE + [wat_path, '-S'] + \
ext_args
- cmd += args_for_finalize(os.path.basename(wast_path))
+ cmd += args_for_finalize(os.path.basename(wat_path))
actual = support.run_command(cmd)
with open(out_path, 'w') as o:
o.write(actual)