diff options
Diffstat (limited to 'scripts/test/lld.py')
-rwxr-xr-x | scripts/test/lld.py | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/scripts/test/lld.py b/scripts/test/lld.py index 6256ea003..cdbb2878d 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 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' + for input_path in shared.get_tests(shared.get_test_dir('lld'), ['.wat', '.wasm']): + print('..', input_path) + is_passive = '.passive.' in input_path + mem_file = input_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 = wat_path + ext + expected_file = input_path + ext if ext != '.out' and not os.path.exists(expected_file): continue - cmd = shared.WASM_EMSCRIPTEN_FINALIZE + [wat_path, '-S'] + \ + cmd = shared.WASM_EMSCRIPTEN_FINALIZE + [input_path, '-S'] + \ ext_args - cmd += args_for_finalize(os.path.basename(wat_path)) + cmd += args_for_finalize(os.path.basename(input_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, wat_path + + shared.fail_if_not_identical_to_file(mem, input_path + '.mem.mem') os.remove(mem_file) @@ -69,10 +69,10 @@ def test_wasm_emscripten_finalize(): def update_lld_tests(): print('\n[ updating wasm-emscripten-finalize testcases... ]\n') - 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' + for input_path in shared.get_tests(shared.get_test_dir('lld'), ['.wat', '.wasm']): + print('..', input_path) + is_passive = '.passive.' in input_path + mem_file = input_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 = wat_path + ext + out_path = input_path + ext if ext != '.out' and not os.path.exists(out_path): continue - cmd = shared.WASM_EMSCRIPTEN_FINALIZE + [wat_path, '-S'] + \ + cmd = shared.WASM_EMSCRIPTEN_FINALIZE + [input_path, '-S'] + \ ext_args - cmd += args_for_finalize(os.path.basename(wat_path)) + cmd += args_for_finalize(os.path.basename(input_path)) actual = support.run_command(cmd) with open(out_path, 'w') as o: o.write(actual) |