diff options
author | chriseth <chris@ethereum.org> | 2017-10-17 17:42:36 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-17 17:42:36 +0800 |
commit | 846b43479dc2991fbbab8b497a622fd58204e08e (patch) | |
tree | 3da4d987f55cfe3e779fea3b718f0cbb7e803e75 | |
parent | 8fbfd62d15ae83a757301db35621e95bccace97b (diff) | |
parent | 0d6e6cc8f29584767d56e7a3063f0b1b2d47fe67 (diff) | |
download | dexon-solidity-846b43479dc2991fbbab8b497a622fd58204e08e.tar.gz dexon-solidity-846b43479dc2991fbbab8b497a622fd58204e08e.tar.zst dexon-solidity-846b43479dc2991fbbab8b497a622fd58204e08e.zip |
Merge pull request #3088 from ethereum/newffbinary
Use new eth binary.
-rwxr-xr-x | scripts/tests.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/tests.sh b/scripts/tests.sh index bf3e3455..2b47c254 100755 --- a/scripts/tests.sh +++ b/scripts/tests.sh @@ -42,8 +42,9 @@ elif [ -z $CI ]; then ETH_PATH="eth" else mkdir -p /tmp/test - wget -O /tmp/test/eth https://github.com/ethereum/cpp-ethereum/releases/download/solidityTester/eth_byzantium - test "$(shasum /tmp/test/eth)" = "6e16ae5e0a0079d85fd63fb43547be3c52410e7e /tmp/test/eth" + # Update hash below if binary is changed. + wget -q -O /tmp/test/eth https://github.com/ethereum/cpp-ethereum/releases/download/solidityTester/eth_byzantium2 + test "$(shasum /tmp/test/eth)" = "4dc3f208475f622be7c8e53bee720e14cd254c6f /tmp/test/eth" sync chmod +x /tmp/test/eth sync # Otherwise we might get a "text file busy" error |