mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-29 04:54:27 +01:00
qemu-trace2txt: port to clifunction
This commit is contained in:
@@ -1,27 +1,29 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import os
|
||||
import subprocess
|
||||
import sys
|
||||
|
||||
import common
|
||||
from shell_helpers import LF
|
||||
|
||||
def main():
|
||||
return self.sh.run_cmd(
|
||||
[
|
||||
os.path.join(self.env['qemu_source_dir'], 'scripts/simpletrace.py'), LF,
|
||||
os.path.join(self.env['qemu_build_dir'], 'trace-events-all'), LF,
|
||||
os.path.join(self.env['qemu_trace_file']), LF,
|
||||
],
|
||||
cmd_file=os.path.join(self.env['run_dir'], 'qemu-trace2txt'),
|
||||
out_file=self.env['qemu_trace_txt_file'],
|
||||
show_stdout=False,
|
||||
)
|
||||
class Main(common.LkmcCliFunction):
|
||||
def __init__(self):
|
||||
super().__init__(
|
||||
description='''\
|
||||
Convert a QEMU `-trace exec_tb` to text form.
|
||||
'''
|
||||
)
|
||||
|
||||
def timed_main(self):
|
||||
return self.sh.run_cmd(
|
||||
[
|
||||
os.path.join(self.env['qemu_source_dir'], 'scripts/simpletrace.py'), LF,
|
||||
os.path.join(self.env['qemu_build_dir'], 'trace-events-all'), LF,
|
||||
os.path.join(self.env['qemu_trace_file']), LF,
|
||||
],
|
||||
cmd_file=os.path.join(self.env['run_dir'], 'qemu-trace2txt'),
|
||||
out_file=self.env['qemu_trace_txt_file'],
|
||||
show_stdout=False,
|
||||
)
|
||||
|
||||
if __name__ == '__main__':
|
||||
parser = self.get_argparse(argparse_args={
|
||||
'description': 'Convert a QEMU `-trace exec_tb` to text form.'
|
||||
})
|
||||
args = self.setup(parser)
|
||||
sys.exit(main())
|
||||
Main().cli_exit()
|
||||
|
||||
Reference in New Issue
Block a user