You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
445 B
17 lines
445 B
2 years ago
|
#!/usr/bin/env bash
|
||
3 years ago
|
|
||
2 years ago
|
set -euxo pipefail
|
||
3 years ago
|
|
||
3 years ago
|
for f in certora/harnesses/ERC20{Votes,Permit,Wrapper}Harness.sol
|
||
3 years ago
|
do
|
||
|
echo "Processing $f"
|
||
|
file=$(basename $f)
|
||
|
echo ${file%.*}
|
||
|
certoraRun certora/harnesses/$file \
|
||
|
--verify ${file%.*}:certora/specs/sanity.spec "$@" \
|
||
2 years ago
|
--solc solc \
|
||
3 years ago
|
--optimistic_loop \
|
||
2 years ago
|
--settings -copyLoopUnroll=4,-strictDecompiler=false \
|
||
|
--msg "checking sanity on ${file%.*}"
|
||
3 years ago
|
done
|