mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Patch external tests for the override data alignment issue until our patches are accepted upstream
This commit is contained in:
parent
dfa0bcf760
commit
27e5afa23d
@ -86,6 +86,14 @@ function bleeps_test
|
|||||||
npm install npm-run-all
|
npm install npm-run-all
|
||||||
npm install
|
npm install
|
||||||
|
|
||||||
|
# TODO: Bleeps depends on OpenZeppelin 4.3.2, which is affected by
|
||||||
|
# https://github.com/OpenZeppelin/openzeppelin-contracts/pull/3293.
|
||||||
|
# Forcing OZ >= 4.6.0 fixes this but it also causes a lot of unrelated compilation errors.
|
||||||
|
# Remove this when Bleeps gets updated to support newer OpenZeppelin.
|
||||||
|
perl -i -0pe \
|
||||||
|
"s/(function hashProposal\(\n address\[\] )calldata( targets,\n uint256\[\] )calldata( values,\n bytes\[\] )calldata( calldatas,)/\1memory\2memory\3memory\4/g" \
|
||||||
|
node_modules/@openzeppelin/contracts/governance/IGovernor.sol
|
||||||
|
|
||||||
replace_version_pragmas
|
replace_version_pragmas
|
||||||
|
|
||||||
for preset in $SELECTED_PRESETS; do
|
for preset in $SELECTED_PRESETS; do
|
||||||
|
@ -62,6 +62,9 @@ function brink_test
|
|||||||
setup_solc "$DIR" "$BINARY_TYPE" "$BINARY_PATH"
|
setup_solc "$DIR" "$BINARY_TYPE" "$BINARY_PATH"
|
||||||
download_project "$repo" "$ref_type" "$ref" "$DIR"
|
download_project "$repo" "$ref_type" "$ref" "$DIR"
|
||||||
|
|
||||||
|
# TODO: Remove this when Brink merges https://github.com/brinktrade/brink-core/pull/52
|
||||||
|
sed -i "s|\(function isValidSignature(bytes \)calldata\( _data, bytes \)calldata\( _signature)\)|\1memory\2memory\3|g" contracts/Test/MockEIP1271Validator.sol
|
||||||
|
|
||||||
neutralize_package_lock
|
neutralize_package_lock
|
||||||
neutralize_package_json_hooks
|
neutralize_package_json_hooks
|
||||||
force_hardhat_compiler_binary "$config_file" "$BINARY_TYPE" "$BINARY_PATH"
|
force_hardhat_compiler_binary "$config_file" "$BINARY_TYPE" "$BINARY_PATH"
|
||||||
|
@ -79,6 +79,9 @@ function gnosis_safe_test
|
|||||||
sed -i 's|\(describe\)\(("Upgrade from Safe 1.1.1"\)|\1.skip\2|g' test/migration/UpgradeFromSafe111.spec.ts
|
sed -i 's|\(describe\)\(("Upgrade from Safe 1.1.1"\)|\1.skip\2|g' test/migration/UpgradeFromSafe111.spec.ts
|
||||||
sed -i 's|\(describe\)\(("Upgrade from Safe 1.2.0"\)|\1.skip\2|g' test/migration/UpgradeFromSafe120.spec.ts
|
sed -i 's|\(describe\)\(("Upgrade from Safe 1.2.0"\)|\1.skip\2|g' test/migration/UpgradeFromSafe120.spec.ts
|
||||||
|
|
||||||
|
# TODO: Remove this when Gnosis merges https://github.com/gnosis/safe-contracts/pull/394
|
||||||
|
sed -i "s|\(function isValidSignature(bytes \)calldata\( _data, bytes \)calldata\( _signature)\)|\1memory\2memory\3|g" contracts/handler/CompatibilityFallbackHandler.sol
|
||||||
|
|
||||||
neutralize_package_lock
|
neutralize_package_lock
|
||||||
neutralize_package_json_hooks
|
neutralize_package_json_hooks
|
||||||
force_hardhat_compiler_binary "$config_file" "$BINARY_TYPE" "$BINARY_PATH"
|
force_hardhat_compiler_binary "$config_file" "$BINARY_TYPE" "$BINARY_PATH"
|
||||||
|
Loading…
Reference in New Issue
Block a user