1
0
mirror of https://github.com/olofk/serv.git synced 2026-01-11 23:42:50 +00:00

Skip disassembly of test cases in riscof plugin

Disassembly takes a lot of time with some toolchains, so leave that
to the user instead.
This commit is contained in:
Olof Kindgren 2023-07-21 12:25:25 +02:00
parent 4567214721
commit ed4b8198ac

View File

@ -71,9 +71,6 @@ class serv(pluginTemplate):
objcopy_run = f'riscv64-unknown-elf-objcopy -O binary {elf} {file_name}.bin'
utils.shellCommand(objcopy_run).run(cwd=test_dir)
objdump_run = f'riscv64-unknown-elf-objdump -D {elf} > {file_name}.disass'
utils.shellCommand(objdump_run).run(cwd=test_dir)
self.makehex(f"{test_dir}/{file_name}.bin", f"{test_dir}/{file_name}.hex")
#The behavior of --build-root in FuseSoC has changed since version 2.2.1