mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
65 lines
1.3 KiB
Bash
65 lines
1.3 KiB
Bash
|
#! /usr/bin/env bash
|
||
|
|
||
|
REPO_ROOT=$(readlink -f "$(dirname "$0")"/..)
|
||
|
SOLIDITY_BUILD_DIR=${SOLIDITY_BUILD_DIR:-${REPO_ROOT}/build}
|
||
|
SOLC=${SOLIDITY_BUILD_DIR}/solc/solc
|
||
|
SPLITSOURCES=${REPO_ROOT}/scripts/splitSources.py
|
||
|
|
||
|
FILETMP=$(mktemp -d)
|
||
|
cd "$FILETMP" || exit 1
|
||
|
|
||
|
|
||
|
function testFile()
|
||
|
{
|
||
|
ALLOUTPUT=$($SOLC --combined-json ast,compact-format --pretty-json "$@" --stop-after parsing 2>&1)
|
||
|
if test $? -ne 0; then
|
||
|
# solc returned failure. Compilation errors and unimplemented features
|
||
|
# are okay, everything else is a failed test (segfault)
|
||
|
if ! echo "$ALLOUTPUT" | grep -e "Unimplemented feature:" -e "Error:" -q; then
|
||
|
echo -n "Test failed on ";
|
||
|
echo "$@"
|
||
|
echo "$ALLOUTPUT"
|
||
|
return 1;
|
||
|
fi
|
||
|
else
|
||
|
echo -n .
|
||
|
fi
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
while read -r file; do
|
||
|
OUTPUT=$($SPLITSOURCES "$file")
|
||
|
RETURN_CODE=$?
|
||
|
FAILED=0
|
||
|
|
||
|
if [ $RETURN_CODE -eq 0 ]
|
||
|
then
|
||
|
# shellcheck disable=SC2086
|
||
|
testFile $OUTPUT
|
||
|
FAILED=$?
|
||
|
|
||
|
rm "${FILETMP:?}/"* -r
|
||
|
elif [ $RETURN_CODE -eq 1 ]
|
||
|
then
|
||
|
testFile "$file"
|
||
|
FAILED=$?
|
||
|
elif [ $RETURN_CODE -eq 2 ]
|
||
|
then
|
||
|
echo -n "<skipping utf8 error>"
|
||
|
else
|
||
|
echo "Received unexpected return code $RETURN_CODE while processing $file: "
|
||
|
echo "-----"
|
||
|
echo "$OUTPUT"
|
||
|
exit 3
|
||
|
fi
|
||
|
|
||
|
if [ $FAILED -eq 1 ]
|
||
|
then
|
||
|
echo -n "Failure on "
|
||
|
echo "$file"
|
||
|
exit 1
|
||
|
fi
|
||
|
done < <(find "${REPO_ROOT}/test" -iname "*.sol" -and -not -name "documentation.sol")
|
||
|
echo
|