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

updated examples

parent 8fb69911
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@ import sys
from binarycpython import _binary_c_bindings
from binarycpython.utils.functions import parse_output
from binarycpython.utils.functions import example_parse_output
from binarycpython.utils.custom_logging_functions import (
autogen_C_logging_code,
binary_c_log_code,
......@@ -74,8 +74,8 @@ def run_example_binary_with_run_system():
# print(output)
# Catch results that start with a given header. (Mind that binary_c has to be configured to print them if your not using a custom logging function)
result_example_header_1 = parse_output(output, selected_header="example_header_1")
result_example_header_2 = parse_output(output, selected_header="example_header_2")
result_example_header_1 = example_parse_output(output, selected_header="example_header_1")
result_example_header_2 = example_parse_output(output, selected_header="example_header_2")
# print(result_example_header_1)
......
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