Skip to content

Commit

Permalink
Update fuzz/fuzz_all_native.py
Browse files Browse the repository at this point in the history
Co-authored-by: Jordan Krage <[email protected]>
  • Loading branch information
vyzaldysanchez and jmank88 authored Feb 6, 2024
1 parent a2f34c8 commit 1a53de8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fuzz/fuzz_all_native.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def discover_fuzzers():
return fuzzers

def run_fuzzer(fuzzfn, dir, duration_seconds):
subprocess.check_call(["go", "test", "-run=^$", f"-fuzz=^{fuzzfn}$", f"-fuzztime={duration_seconds}s", f"github.com/smartcontractkit/chainlink/{dir}"], cwd=LIBROOT)
subprocess.check_call(["go", "test", "-run=^$", f"-fuzz=^{fuzzfn}$", f"-fuzztime={duration_seconds}s", f"./{dir}"], cwd=LIBROOT)

if __name__ == "__main__":
main()

0 comments on commit 1a53de8

Please sign in to comment.