Skip to content

Commit

Permalink
install it
Browse files Browse the repository at this point in the history
  • Loading branch information
agroce committed Aug 25, 2024
1 parent 32b5be5 commit 28bf4df
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/test_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ def test_record_replay():
r = subprocess.call(["gcc -o toy test/toy.c"], shell=True)
assert r == 0

r = subprocess.call(["python setup.py install --user"], shell=True)
assert r == 0

with open("out1.txt", 'w') as f:
r = subprocess.call(["mkdir mutants; rm mutants/*; muttfuzz \"./toy\" toy --score --avoid_repeats --stop_on_repeat --repeat_retries 2000 --save_results analysis.csv --save_mutants mutants"], shell=True, stdout=f, stderr=f)
with open("out1.txt", 'r') as f:
Expand Down

0 comments on commit 28bf4df

Please sign in to comment.