Co-authored-by: Shelly Grossman <shelly@certora.com> Co-authored-by: Aleksander Kryukov <58052996+RedLikeRosesss@users.noreply.github.com> Co-authored-by: Michael M <91594326+MichaelMorami@users.noreply.github.com> Co-authored-by: Aleksander Kryukov <firealexkryukov@gmail.com>
15 lines
384 B
Bash
15 lines
384 B
Bash
make -C certora munged
|
|
|
|
for f in certora/harnesses/Wizard*.sol
|
|
do
|
|
echo "Processing $f"
|
|
file=$(basename $f)
|
|
echo ${file%.*}
|
|
certoraRun certora/harnesses/$file \
|
|
--verify ${file%.*}:certora/specs/sanity.spec "$@" \
|
|
--solc solc8.2 --staging shelly/forSasha \
|
|
--optimistic_loop \
|
|
--msg "checking sanity on ${file%.*}"
|
|
--settings -copyLoopUnroll=4
|
|
done
|