diff options
author | Sam Clegg <sbc@chromium.org> | 2017-05-25 13:52:24 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-25 13:52:24 -0700 |
commit | 261df56ff70732a19d1211ca98c358de2fc22d57 (patch) | |
tree | 2c2ba2fe2ca43e208391cc5655278ff124986c33 /test/run-wasm-link.py | |
parent | cfcdab032b9fc3f16f9b6259de4ebc509e269def (diff) | |
download | wabt-261df56ff70732a19d1211ca98c358de2fc22d57.tar.gz wabt-261df56ff70732a19d1211ca98c358de2fc22d57.tar.bz2 wabt-261df56ff70732a19d1211ca98c358de2fc22d57.zip |
Rename wasmdump to wasm-objdump (#455)
This is more consistent with how llvm and binutils
name such tools.
Diffstat (limited to 'test/run-wasm-link.py')
-rwxr-xr-x | test/run-wasm-link.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/run-wasm-link.py b/test/run-wasm-link.py index 1c98aa40..0387fa50 100755 --- a/test/run-wasm-link.py +++ b/test/run-wasm-link.py @@ -69,7 +69,7 @@ def main(args): '-r': options.relocatable, }) - wasmdump = utils.Executable( + wasm_objdump = utils.Executable( find_exe.GetWasmdumpExecutable(options.bindir), error_cmdline=options.error_cmdline) @@ -78,7 +78,7 @@ def main(args): wast2wasm.verbose = options.print_cmd wasm_link.verbose = options.print_cmd - wasmdump.verbose = options.print_cmd + wasm_objdump.verbose = options.print_cmd wasm_interp.verbose = options.print_cmd filename = options.file @@ -104,11 +104,11 @@ def main(args): os.remove(partially_linked) os.rename(output, partially_linked) wasm_link.RunWithArgs('-r', '-o', output, partially_linked, f) - #wasmdump.RunWithArgs('-d', '-h', output) - wasmdump.RunWithArgs('-d', '-x', '-r', '-h', output) + #wasm_objdump.RunWithArgs('-d', '-h', output) + wasm_objdump.RunWithArgs('-d', '-x', '-r', '-h', output) else: wasm_link.RunWithArgs('-o', output, *wasm_files) - wasmdump.RunWithArgs('-d', '-x', '-r', '-h', output) + wasm_objdump.RunWithArgs('-d', '-x', '-r', '-h', output) if options.spec: with open(out_file) as json_file: |