Merge pull request #13189 from ethereum/fix-externalTests-script

Enabled external tests to use relative paths to solc binary.
This commit is contained in:
Mathias L. Baumann 2022-06-29 19:46:00 +02:00 committed by GitHub
commit 05496064fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
16 changed files with 16 additions and 16 deletions

View File

@ -28,7 +28,7 @@ REPO_ROOT=$(realpath "$(dirname "$0")/../..")
verify_input "$@" verify_input "$@"
BINARY_TYPE="$1" BINARY_TYPE="$1"
BINARY_PATH="$2" BINARY_PATH="$(realpath "$2")"
SELECTED_PRESETS="$3" SELECTED_PRESETS="$3"
function compile_fn { npm run compile; } function compile_fn { npm run compile; }

View File

@ -28,7 +28,7 @@ REPO_ROOT=$(realpath "$(dirname "$0")/../..")
verify_input "$@" verify_input "$@"
BINARY_TYPE="$1" BINARY_TYPE="$1"
BINARY_PATH="$2" BINARY_PATH="$(realpath "$2")"
SELECTED_PRESETS="$3" SELECTED_PRESETS="$3"
function compile_fn { yarn compile; } function compile_fn { yarn compile; }

View File

@ -28,7 +28,7 @@ REPO_ROOT=$(realpath "$(dirname "$0")/../..")
verify_input "$@" verify_input "$@"
BINARY_TYPE="$1" BINARY_TYPE="$1"
BINARY_PATH="$2" BINARY_PATH="$(realpath "$2")"
SELECTED_PRESETS="$3" SELECTED_PRESETS="$3"
function compile_fn { yarn compile; } function compile_fn { yarn compile; }

View File

@ -28,7 +28,7 @@ REPO_ROOT=$(realpath "$(dirname "$0")/../..")
verify_input "$@" verify_input "$@"
BINARY_TYPE="$1" BINARY_TYPE="$1"
BINARY_PATH="$2" BINARY_PATH="$(realpath "$2")"
SELECTED_PRESETS="$3" SELECTED_PRESETS="$3"
function compile_fn { yarn run provision:token:contracts; } function compile_fn { yarn run provision:token:contracts; }

View File

@ -28,7 +28,7 @@ REPO_ROOT=$(realpath "$(dirname "$0")/../..")
verify_input "$@" verify_input "$@"
BINARY_TYPE="$1" BINARY_TYPE="$1"
BINARY_PATH="$2" BINARY_PATH="$(realpath "$2")"
SELECTED_PRESETS="$3" SELECTED_PRESETS="$3"
function compile_fn { npm run build; } function compile_fn { npm run build; }

View File

@ -28,7 +28,7 @@ REPO_ROOT=$(realpath "$(dirname "$0")/../..")
verify_input "$@" verify_input "$@"
BINARY_TYPE="$1" BINARY_TYPE="$1"
BINARY_PATH="$2" BINARY_PATH="$(realpath "$2")"
SELECTED_PRESETS="$3" SELECTED_PRESETS="$3"
function compile_fn { yarn build; } function compile_fn { yarn build; }

View File

@ -28,7 +28,7 @@ REPO_ROOT=$(realpath "$(dirname "$0")/../..")
verify_input "$@" verify_input "$@"
BINARY_TYPE="$1" BINARY_TYPE="$1"
BINARY_PATH="$2" BINARY_PATH="$(realpath "$2")"
SELECTED_PRESETS="$3" SELECTED_PRESETS="$3"
function compile_fn { npm run compile; } function compile_fn { npm run compile; }

View File

@ -28,7 +28,7 @@ REPO_ROOT=$(realpath "$(dirname "$0")/../..")
verify_input "$@" verify_input "$@"
BINARY_TYPE="$1" BINARY_TYPE="$1"
BINARY_PATH="$2" BINARY_PATH="$(realpath "$2")"
SELECTED_PRESETS="$3" SELECTED_PRESETS="$3"
function compile_fn { npm run build; } function compile_fn { npm run build; }

View File

@ -28,7 +28,7 @@ REPO_ROOT=$(realpath "$(dirname "$0")/../..")
verify_input "$@" verify_input "$@"
BINARY_TYPE="$1" BINARY_TYPE="$1"
BINARY_PATH="$2" BINARY_PATH="$(realpath "$2")"
SELECTED_PRESETS="$3" SELECTED_PRESETS="$3"
function compile_fn { npm run build; } function compile_fn { npm run build; }

View File

@ -28,7 +28,7 @@ REPO_ROOT=$(realpath "$(dirname "$0")/../..")
verify_input "$@" verify_input "$@"
BINARY_TYPE="$1" BINARY_TYPE="$1"
BINARY_PATH="$2" BINARY_PATH="$(realpath "$2")"
SELECTED_PRESETS="$3" SELECTED_PRESETS="$3"
function compile_fn { yarn build; } function compile_fn { yarn build; }

View File

@ -28,7 +28,7 @@ REPO_ROOT=$(realpath "$(dirname "$0")/../..")
verify_input "$@" verify_input "$@"
BINARY_TYPE="$1" BINARY_TYPE="$1"
BINARY_PATH="$2" BINARY_PATH="$(realpath "$2")"
SELECTED_PRESETS="$3" SELECTED_PRESETS="$3"
function compile_fn { yarn compile; } function compile_fn { yarn compile; }

View File

@ -28,7 +28,7 @@ REPO_ROOT=$(realpath "$(dirname "$0")/../..")
verify_input "$@" verify_input "$@"
BINARY_TYPE="$1" BINARY_TYPE="$1"
BINARY_PATH="$2" BINARY_PATH="$(realpath "$2")"
SELECTED_PRESETS="$3" SELECTED_PRESETS="$3"
function compile_fn { yarn compile; } function compile_fn { yarn compile; }

View File

@ -28,7 +28,7 @@ REPO_ROOT=$(realpath "$(dirname "$0")/../..")
verify_input "$@" verify_input "$@"
BINARY_TYPE="$1" BINARY_TYPE="$1"
BINARY_PATH="$2" BINARY_PATH="$(realpath "$2")"
SELECTED_PRESETS="$3" SELECTED_PRESETS="$3"
function compile_fn { yarn build; } function compile_fn { yarn build; }

View File

@ -28,7 +28,7 @@ REPO_ROOT=$(realpath "$(dirname "$0")/../..")
verify_input "$@" verify_input "$@"
BINARY_TYPE="$1" BINARY_TYPE="$1"
BINARY_PATH="$2" BINARY_PATH="$(realpath "$2")"
SELECTED_PRESETS="$3" SELECTED_PRESETS="$3"
function compile_fn { yarn compile; } function compile_fn { yarn compile; }

View File

@ -28,7 +28,7 @@ REPO_ROOT=$(realpath "$(dirname "$0")/../..")
verify_input "$@" verify_input "$@"
BINARY_TYPE="$1" BINARY_TYPE="$1"
BINARY_PATH="$2" BINARY_PATH="$(realpath "$2")"
SELECTED_PRESETS="$3" SELECTED_PRESETS="$3"
function compile_fn { npm run build; } function compile_fn { npm run build; }

View File

@ -31,7 +31,7 @@ REPO_ROOT=$(realpath "$(dirname "$0")/../..")
verify_input "$@" verify_input "$@"
BINARY_TYPE="$1" BINARY_TYPE="$1"
BINARY_PATH="$2" BINARY_PATH="$(realpath "$2")"
SELECTED_PRESETS="$3" SELECTED_PRESETS="$3"
function compile_fn { npm run compile; } function compile_fn { npm run compile; }