ityfuzz
ityfuzz copied to clipboard
how to set a time limit when testing a smart contract?
When I test a contract using the command "ityfuzz evm -t './build/*'", the program keeps running indefinitely. How can I set a time limit or stop the program from running? I look forward to your answer. Thank you.
You can do something like this:
mac:
gtimeout 10s ityfuzz evm -t './build/*'
linux:
timeout 10s ityfuzz evm -t './build/*'