mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
172 lines
4.3 KiB
Bash
Executable File
172 lines
4.3 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
#------------------------------------------------------------------------------
|
|
# Bash script to execute the Solidity tests.
|
|
#
|
|
# The documentation for solidity is hosted at:
|
|
#
|
|
# https://solidity.readthedocs.org
|
|
#
|
|
# ------------------------------------------------------------------------------
|
|
# This file is part of solidity.
|
|
#
|
|
# solidity is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# solidity is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with solidity. If not, see <http://www.gnu.org/licenses/>
|
|
#
|
|
# (c) 2016 solidity contributors.
|
|
#------------------------------------------------------------------------------
|
|
|
|
set -e
|
|
|
|
REPO_ROOT="$(dirname "$0")/.."
|
|
|
|
source "${REPO_ROOT}/scripts/common.sh"
|
|
|
|
WORKDIR=`mktemp -d`
|
|
# Will be printed in case of a test failure
|
|
ALETH_TMP_OUT=`mktemp`
|
|
IPC_ENABLED=true
|
|
ALETH_PID=
|
|
CMDLINE_PID=
|
|
|
|
if [[ "$OSTYPE" == "darwin"* ]]
|
|
then
|
|
SMT_FLAGS="--no-smt"
|
|
fi
|
|
|
|
cleanup() {
|
|
# ensure failing commands don't cause termination during cleanup (especially within safe_kill)
|
|
set +e
|
|
|
|
if [[ "$IPC_ENABLED" = true ]] && [[ -n "${ALETH_PID}" ]]
|
|
then
|
|
safe_kill $ALETH_PID $ALETH_PATH
|
|
fi
|
|
if [[ -n "$CMDLINE_PID" ]]
|
|
then
|
|
safe_kill $CMDLINE_PID "Commandline tests"
|
|
fi
|
|
|
|
echo "Cleaning up working directory ${WORKDIR} ..."
|
|
rm -rf "$WORKDIR" || true
|
|
rm $ALETH_TMP_OUT
|
|
}
|
|
trap cleanup INT TERM
|
|
|
|
if [ "$1" = --junit_report ]
|
|
then
|
|
if [ -z "$2" ]
|
|
then
|
|
echo "Usage: $0 [--junit_report <report_directory>]"
|
|
exit 1
|
|
fi
|
|
log_directory="$2"
|
|
else
|
|
log_directory=""
|
|
fi
|
|
|
|
printTask "Running commandline tests..."
|
|
# Only run in parallel if this is run on CI infrastructure
|
|
if [[ -n "$CI" ]]
|
|
then
|
|
"$REPO_ROOT/test/cmdlineTests.sh" &
|
|
CMDLINE_PID=$!
|
|
else
|
|
if ! $REPO_ROOT/test/cmdlineTests.sh
|
|
then
|
|
printError "Commandline tests FAILED"
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
function check_aleth() {
|
|
printTask "Running IPC tests with $ALETH_PATH..."
|
|
if ! hash $ALETH_PATH 2>/dev/null; then
|
|
printError "$ALETH_PATH not found"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
if [ "$IPC_ENABLED" = true ];
|
|
then
|
|
download_aleth
|
|
check_aleth
|
|
ALETH_PID=$(run_aleth)
|
|
fi
|
|
|
|
EVM_VERSIONS="homestead byzantium"
|
|
|
|
if [ -z "$CI" ]
|
|
then
|
|
EVM_VERSIONS+=" constantinople petersburg"
|
|
fi
|
|
|
|
# And then run the Solidity unit-tests in the matrix combination of optimizer / no optimizer
|
|
# and homestead / byzantium VM, # pointing to that IPC endpoint.
|
|
for optimize in "" "--optimize"
|
|
do
|
|
for vm in $EVM_VERSIONS
|
|
do
|
|
FORCE_ABIV2_RUNS="no"
|
|
if [[ "$vm" == "constantinople" ]]
|
|
then
|
|
FORCE_ABIV2_RUNS="no yes" # run both in constantinople
|
|
fi
|
|
for abiv2 in $FORCE_ABIV2_RUNS
|
|
do
|
|
force_abiv2_flag=""
|
|
if [[ "$abiv2" == "yes" ]]
|
|
then
|
|
force_abiv2_flag="--abiencoderv2 --optimize-yul"
|
|
fi
|
|
printTask "--> Running tests using "$optimize" --evm-version "$vm" $force_abiv2_flag..."
|
|
|
|
log=""
|
|
if [ -n "$log_directory" ]
|
|
then
|
|
if [ -n "$optimize" ]
|
|
then
|
|
log=--logger=JUNIT,error,$log_directory/opt_$vm.xml $testargs
|
|
else
|
|
log=--logger=JUNIT,error,$log_directory/noopt_$vm.xml $testargs_no_opt
|
|
fi
|
|
fi
|
|
|
|
set +e
|
|
"$REPO_ROOT"/build/test/soltest --show-progress $log -- --testpath "$REPO_ROOT"/test "$optimize" --evm-version "$vm" $SMT_FLAGS $IPC_FLAGS $force_abiv2_flag --ipcpath "${WORKDIR}/geth.ipc"
|
|
|
|
if test "0" -ne "$?"; then
|
|
if [ -n "$log_directory" ]
|
|
then
|
|
# Need to kill aleth first so the log is written
|
|
safe_kill $ALETH_PID $ALETH_PATH
|
|
cp $ALETH_TMP_OUT $log_directory/aleth.log
|
|
printError "Some test failed, wrote aleth.log"
|
|
fi
|
|
exit 1
|
|
fi
|
|
set -e
|
|
|
|
done
|
|
done
|
|
done
|
|
|
|
if [[ -n $CMDLINE_PID ]] && ! wait $CMDLINE_PID
|
|
then
|
|
printError "Commandline tests FAILED"
|
|
CMDLINE_PID=
|
|
exit 1
|
|
fi
|
|
|
|
cleanup
|