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.
|
|
|
|
#------------------------------------------------------------------------------
|
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 install_fn { yarn; git submodule update --init; }
|
|
|
|
function compile_fn { yarn run provision:token:contracts; }
|
|
|
|
function test_fn { yarn run test:contracts; }
|
|
|
|
|
|
|
|
function colony_test
|
|
|
|
{
|
|
|
|
OPTIMIZER_LEVEL=3
|
|
|
|
FORCE_ABIv2=false
|
2019-11-28 21:12:42 +00:00
|
|
|
CONFIG="truffle.js"
|
|
|
|
|
2019-10-31 13:26:33 +00:00
|
|
|
truffle_setup https://github.com/erak/colonyNetwork.git develop_060
|
2019-04-01 22:38:14 +00:00
|
|
|
run_install install_fn
|
|
|
|
|
|
|
|
cd lib
|
|
|
|
rm -Rf dappsys
|
2019-11-27 11:17:27 +00:00
|
|
|
git clone https://github.com/erak/dappsys-monolithic.git -b master_060 dappsys
|
2019-04-01 22:38:14 +00:00
|
|
|
cd ..
|
|
|
|
|
2019-09-25 13:59:52 +00:00
|
|
|
truffle_run_test compile_fn test_fn
|
2019-04-01 22:38:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
external_test ColonyNetworks colony_test
|