Static Analyzer for Solidity
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.
slither/scripts/ci_test_flat.sh

13 lines
155 B

#!/usr/bin/env bash
### Test slither-prop
cd examples/flat || exit 1
4 years ago
if ! slither-flat b.sol; then
echo "slither-flat failed"
exit 1
fi
4 years ago
exit 0