mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
61 lines
1.9 KiB
Bash
Executable File
61 lines
1.9 KiB
Bash
Executable File
#!/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.
|
|
#------------------------------------------------------------------------------
|
|
source scripts/common.sh
|
|
source test/externalTests/common.sh
|
|
|
|
verify_version_input "$1" "$2"
|
|
SOLJSON="$1"
|
|
VERSION="$2"
|
|
|
|
function install_fn { echo "Nothing to install."; }
|
|
function compile_fn { echo "Nothing to compile."; }
|
|
function test_fn { npm test; }
|
|
|
|
function solcjs_test
|
|
{
|
|
TEST_DIR=$(pwd)
|
|
SOLCJS_INPUT_DIR="$TEST_DIR"/test/externalTests/solc-js
|
|
|
|
# set up solc-js on the branch specified
|
|
setup "$SOLJSON" master
|
|
|
|
printLog "Updating index.js file..."
|
|
echo "require('./determinism.js');" >> test/index.js
|
|
|
|
printLog "Copying determinism.js..."
|
|
cp -f "$SOLCJS_INPUT_DIR/determinism.js" test/
|
|
|
|
printLog "Copying contracts..."
|
|
cp -Rf "$SOLCJS_INPUT_DIR/DAO" test/
|
|
|
|
printLog "Copying SMTChecker tests..."
|
|
cp -Rf "$TEST_DIR"/test/libsolidity/smtCheckerTests test/
|
|
rm -rf test/smtCheckerTests/imports
|
|
|
|
# Update version (needed for some tests)
|
|
echo "Updating package.json to version $VERSION"
|
|
npm version --allow-same-version --no-git-tag-version "$VERSION"
|
|
|
|
run_test compile_fn test_fn
|
|
}
|
|
|
|
external_test solc-js solcjs_test
|