common: rename _src_ to _source_ everywhere

This commit is contained in:
Ciro Santilli 六四事件 法轮功
2019-01-22 00:00:00 +00:00
parent a1ae3fbd26
commit eccefa4c57
12 changed files with 76 additions and 70 deletions

View File

@@ -10,12 +10,12 @@ from shell_helpers import LF
def main():
return self.sh.run_cmd(
[
os.path.join(kwargs['qemu_src_dir'], 'scripts/simpletrace.py'), LF,
os.path.join(kwargs['qemu_build_dir'], 'trace-events-all'), LF,
os.path.join(kwargs['qemu_trace_file']), LF,
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(kwargs['run_dir'], 'qemu-trace2txt'),
out_file=kwargs['qemu_trace_txt_file'],
cmd_file=os.path.join(self.env['run_dir'], 'qemu-trace2txt'),
out_file=self.env['qemu_trace_txt_file'],
show_stdout=False,
)