mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Disable error checking by bash for fuzzer
This commit is contained in:
parent
56412b11b3
commit
21ba8eea69
@ -79,11 +79,14 @@ TMPDIR=$(mktemp -d)
|
||||
"$REPO_ROOT"/scripts/isolate_tests.py "$REPO_ROOT"/test/
|
||||
for f in *.sol
|
||||
do
|
||||
set +e
|
||||
"$REPO_ROOT"/build/test/solfuzzer --quiet < "$f"
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "Fuzzer failed on:"
|
||||
cat $f
|
||||
exit 1
|
||||
fi
|
||||
set -e
|
||||
done
|
||||
)
|
||||
rm -rf "$TMPDIR"
|
||||
|
Loading…
Reference in New Issue
Block a user