Skip to content
Snippets Groups Projects
Commit 174bd9c7 authored by David Hendriks's avatar David Hendriks
Browse files

old update

parent d4ee2cc1
No related branches found
No related tags found
No related merge requests found
...@@ -87,10 +87,14 @@ def run_system_with_log(**kwargs): ...@@ -87,10 +87,14 @@ def run_system_with_log(**kwargs):
for key in kwargs.keys(): for key in kwargs.keys():
args[key] = kwargs[key] args[key] = kwargs[key]
# override internal buffering value because otherwise it wont write to file
args["internal_buffering"] = 0
# Construct arguments string and final execution string # Construct arguments string and final execution string
arg_string = create_arg_string(args) arg_string = create_arg_string(args)
arg_string = f'binary_c {arg_string}' arg_string = f'binary_c {arg_string}'
# print(arg_string) # print(arg_string)
# Run it and get output # Run it and get output
...@@ -144,4 +148,4 @@ def parse_output(output, selected_header): ...@@ -144,4 +148,4 @@ def parse_output(output, selected_header):
for key in keys: for key in keys:
final_values_dict[key].append(value_dict[key]) final_values_dict[key].append(value_dict[key])
return final_values_dict return final_values_dict
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment