Skip to content

Commit

Permalink
Runs nightly fuzz on the root directory
Browse files Browse the repository at this point in the history
  • Loading branch information
vyzaldysanchez committed Feb 5, 2024
1 parent b3b509c commit 47e6a66
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/core/{dir}"], cwd=LIBROOT)
subprocess.check_call(["go", "test", "-run=^$", f"-fuzz=^{fuzzfn}$", f"-fuzztime={duration_seconds}s", f"github.com/smartcontractkit/chainlink/{dir}"], cwd=LIBROOT)

if __name__ == "__main__":
main()

0 comments on commit 47e6a66

Please sign in to comment.