mirror of https://github.com/crytic/slither
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.
11 lines
229 B
11 lines
229 B
5 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
4 years ago
|
### Test slither-prop
|
||
5 years ago
|
|
||
4 years ago
|
cd examples/slither-prop || exit 1
|
||
5 years ago
|
slither-prop . --contract ERC20Buggy
|
||
|
if [ ! -f contracts/crytic/TestERC20BuggyTransferable.sol ]; then
|
||
|
echo "slither-prop failed"
|
||
|
return 1
|
||
|
fi
|