25 lines
520 B
Bash
25 lines
520 B
Bash
make -C certora munged
|
|
|
|
if [ -z "$1" ]
|
|
then
|
|
echo "Incorrect number of arguments"
|
|
echo ""
|
|
echo "Usage: (from git root)"
|
|
echo " ./certora/scripts/`basename $0` [message describing the run]"
|
|
echo ""
|
|
exit 1
|
|
fi
|
|
|
|
msg=$1
|
|
shift 1
|
|
|
|
certoraRun \
|
|
certora/harnesses/ERC20VotesHarness.sol \
|
|
--verify ERC20VotesHarness:certora/specs/ERC20Votes.spec \
|
|
--solc solc8.2 \
|
|
--optimistic_loop \
|
|
--loop_iter 4 \
|
|
--staging "alex/new-dt-hashing-alpha" \
|
|
--msg "${msg}" \
|
|
--rule_sanity
|