2019-04-01 22:38:14 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# 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) 2019 solidity contributors.
|
|
|
|
#------------------------------------------------------------------------------
|
2021-10-25 12:30:15 +00:00
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2019-04-26 09:57:49 +00:00
|
|
|
source scripts/common.sh
|
2019-04-01 22:38:14 +00:00
|
|
|
source test/externalTests/common.sh
|
|
|
|
|
|
|
|
verify_input "$1"
|
|
|
|
SOLJSON="$1"
|
|
|
|
|
|
|
|
function compile_fn { yarn run provision:token:contracts; }
|
|
|
|
function test_fn { yarn run test:contracts; }
|
|
|
|
|
|
|
|
function colony_test
|
|
|
|
{
|
2021-10-25 12:29:43 +00:00
|
|
|
local repo="https://github.com/solidity-external-tests/colonyNetwork.git"
|
|
|
|
local branch=develop_080
|
|
|
|
local config_file="truffle.js"
|
|
|
|
local min_optimizer_level=3
|
|
|
|
local max_optimizer_level=3
|
2019-11-28 21:12:42 +00:00
|
|
|
|
2021-10-25 12:29:43 +00:00
|
|
|
setup_solcjs "$DIR" "$SOLJSON"
|
|
|
|
download_project "$repo" "$branch" "$DIR"
|
|
|
|
|
2021-10-26 13:39:19 +00:00
|
|
|
neutralize_package_json_hooks
|
2021-10-25 12:29:43 +00:00
|
|
|
force_truffle_compiler_settings "$config_file" "${DIR}/solc" "$min_optimizer_level"
|
|
|
|
yarn
|
|
|
|
git submodule update --init
|
2019-04-01 22:38:14 +00:00
|
|
|
|
|
|
|
cd lib
|
|
|
|
rm -Rf dappsys
|
2020-12-01 23:25:02 +00:00
|
|
|
git clone https://github.com/solidity-external-tests/dappsys-monolithic.git -b master_080 dappsys
|
2019-04-01 22:38:14 +00:00
|
|
|
cd ..
|
|
|
|
|
2021-10-25 12:29:43 +00:00
|
|
|
replace_version_pragmas
|
2021-10-27 14:26:52 +00:00
|
|
|
force_solc_modules "${DIR}/solc"
|
2021-10-25 12:29:43 +00:00
|
|
|
|
|
|
|
for level in $(seq "$min_optimizer_level" "$max_optimizer_level"); do
|
|
|
|
truffle_run_test "$config_file" "${DIR}/solc" "$level" compile_fn test_fn
|
|
|
|
done
|
2019-04-01 22:38:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
external_test ColonyNetworks colony_test
|