fix issue##5007

This commit is contained in:
mestorlx
2018-10-15 14:26:15 -03:00
parent 2384947521
commit 9f9d6fdcc4
3 changed files with 13 additions and 6 deletions
+8
View File
@@ -292,6 +292,14 @@ SOLTMPDIR=$(mktemp -d)
if [[ "$result" != 0 ]] ; then
exit 1
fi
# This should not fail
set +e
output=$(echo '' | "$SOLC" --ast - 2>/dev/null)
set -e
if [[ $? != 0 ]] ; then
exit 1
fi
)
printTask "Testing soljson via the fuzzer..."