Skip to content

Commit

Permalink
Merge pull request #11 from saheerb/patch-1
Browse files Browse the repository at this point in the history
print command line options
  • Loading branch information
0xc0170 authored Mar 7, 2022
2 parents ff123ac + 48a5c75 commit 1c0647f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions fm_agent/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ def launch_FVP_IRIS(model_exec, config_file='', model_options=[]):
cmd_line.extend(model_options)
if config_file:
cmd_line.extend(['-f' , config_file])
logging.info(cmd_line)
fm_proc = Popen(cmd_line,stdout=PIPE,stderr=STDOUT, close_fds=ON_POSIX)
out_q = Queue()
reader_t = Thread(target=enqueue_output, args=(fm_proc.stdout, out_q))
Expand Down

0 comments on commit 1c0647f

Please sign in to comment.