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.
17 lines
429 B
17 lines
429 B
6 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
### Test slither-check-upgradability
|
||
|
|
||
|
DIR_TESTS="tests/possible_paths"
|
||
|
|
||
|
slither-find-paths "$DIR_TESTS/paths.sol" A.destination --solc solc-0.5.0 > test_possible_paths.txt 2>&1
|
||
|
DIFF=$(diff test_possible_paths.txt "$DIR_TESTS/paths.txt")
|
||
|
if [ "$DIFF" != "" ]
|
||
|
then
|
||
|
echo "slither-find-paths failed"
|
||
|
cat test_possible_paths.txt
|
||
|
cat "$DIR_TESTS/paths.txt"
|
||
|
exit -1
|
||
|
fi
|
||
|
rm test_possible_paths.txt
|