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.
16 lines
269 B
16 lines
269 B
6 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
### Test printer
|
||
|
|
||
5 years ago
|
# Needed for evm printer
|
||
|
pip install evm-cfg-builder
|
||
|
|
||
4 years ago
|
if ! slither "tests/*.json" --print all --json -; then
|
||
6 years ago
|
echo "Printer tests failed"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
4 years ago
|
solc use "0.5.1"
|
||
|
|
||
|
slither examples/scripts/test_evm_api.sol --print evm
|