mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Run proof script only on existing files.
This commit is contained in:
parent
f3e100a000
commit
fe5bcf759e
@ -10,16 +10,18 @@ git fetch origin
|
||||
error=0
|
||||
for new_proof in $(git diff origin/develop --name-only test/formal/)
|
||||
do
|
||||
set +e
|
||||
echo "Proving $new_proof..."
|
||||
output=$(python3 "$new_proof")
|
||||
result=$?
|
||||
set -e
|
||||
if [ -e "$new_proof" ]; then
|
||||
set +e
|
||||
echo "Proving $new_proof..."
|
||||
output=$(python3 "$new_proof")
|
||||
result=$?
|
||||
set -e
|
||||
|
||||
if [[ "$result" != 0 ]]
|
||||
then
|
||||
echo "Proof $(basename "$new_proof" ".py") failed: $output."
|
||||
error=1
|
||||
if [[ "$result" != 0 ]]
|
||||
then
|
||||
echo "Proof $(basename "$new_proof" ".py") failed: $output."
|
||||
error=1
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user