Skip to content

Commit

Permalink
correct ktest-tool command for mac
Browse files Browse the repository at this point in the history
  • Loading branch information
Abdalla committed Jul 21, 2024
1 parent 1226c6e commit aee539d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/smt_solver/extract_klee_input.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def run_ktest_tool(ktest_file, output_file):
"""
# Run ktest-tool on the ktest file and save the output to the output file
with open(output_file, 'w') as f:
subprocess.run(['klee.ktest-tool', ktest_file], stdout=f, text=True)
subprocess.run(['ktest-tool', ktest_file], stdout=f, text=True)



Expand Down

0 comments on commit aee539d

Please sign in to comment.