Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Fixing tests, fixing refreshing precompiled #3483

Merged
merged 4 commits into from
Nov 17, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ethcore/res/ethereum/tests
Submodule tests updated 46 files
+1 −0 BlockchainTests/EIP150/README.md
+1 −0 BlockchainTests/Homestead/README.md
+6 −6 StateTests/EIP150/Homestead/stDelegatecallTest.json
+12 −12 StateTests/EIP150/Homestead/stPreCompiledContracts.json
+89 −90 StateTests/EIP150/Homestead/stSystemOperationsTest.json
+2,974 −0 StateTests/EIP158/EIP150/stChangedTests.json
+1,065 −0 StateTests/EIP158/EIP150/stEIPSpecificTest.json
+2,228 −0 StateTests/EIP158/EIP150/stEIPsingleCodeGasPrices.json
+688 −0 StateTests/EIP158/EIP150/stMemExpandingEIPCalls.json
+3,310 −0 StateTests/EIP158/Homestead/stBoundsTest.json
+7,159 −0 StateTests/EIP158/Homestead/stCallCodes.json
+2,649 −0 StateTests/EIP158/Homestead/stCallCreateCallCodeTest.json
+5,861 −0 StateTests/EIP158/Homestead/stCallDelegateCodes.json
+5,842 −0 StateTests/EIP158/Homestead/stCallDelegateCodesCallCode.json
+2,561 −0 StateTests/EIP158/Homestead/stDelegatecallTest.json
+320 −0 StateTests/EIP158/Homestead/stHomeSteadSpecific.json
+1,086 −0 StateTests/EIP158/Homestead/stInitCodeTest.json
+3,855 −0 StateTests/EIP158/Homestead/stLogTests.json
+4,091 −0 StateTests/EIP158/Homestead/stMemoryTest.json
+5,683 −0 StateTests/EIP158/Homestead/stPreCompiledContracts.json
+8,066 −0 StateTests/EIP158/Homestead/stQuadraticComplexityTest.json
+3,100 −0 StateTests/EIP158/Homestead/stRecursiveCreate.json
+1,307 −0 StateTests/EIP158/Homestead/stRefundTest.json
+527 −0 StateTests/EIP158/Homestead/stSpecialTest.json
+8,693 −0 StateTests/EIP158/Homestead/stSystemOperationsTest.json
+2,583 −0 StateTests/EIP158/Homestead/stTransactionTest.json
+3,286 −0 StateTests/EIP158/Homestead/stWalletTest.json
+1,281 −0 StateTests/EIP158/stCreateTest.json
+361 −0 StateTests/EIP158/stEIP158SpecificTest.json
+1,677 −0 StateTests/EIP158/stNonZeroCallsTest.json
+1,591 −0 StateTests/EIP158/stZeroCallsTest.json
+6 −6 StateTests/Homestead/stDelegatecallTest.json
+12 −12 StateTests/Homestead/stPreCompiledContracts.json
+15 −92 StateTests/Homestead/stSystemOperationsTest.json
+12 −12 StateTests/stPreCompiledContracts.json
+152 −153 StateTests/stSystemOperationsTest.json
+615 −0 TransactionTests/EIP155/ttTransactionTest.json
+189 −0 TransactionTests/EIP155/ttTransactionTestEip155VitaliksTests.json
+591 −0 TransactionTests/EIP155/ttTransactionTestVRule.json
+28 −0 TransactionTests/Homestead/ttTransactionTest.json
+46 −0 TransactionTests/Homestead/ttTransactionTestEip155VitaliksTests.json
+30 −1 TransactionTests/ttTransactionTest.json
+4 −4 VMTests/vmEnvironmentalInfoTest.json
+2 −2 VMTests/vmIOandFlowOperationsTest.json
+43 −0 VMTests/vmPushDupSwapTest.json
+44 −18 VMTests/vmSystemOperationsTest.json
4 changes: 3 additions & 1 deletion js/scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,13 @@ if [ "$BRANCH" == "master" ]; then
fi

echo "*** Updating cargo parity-ui-precompiled#$PRECOMPILED_HASH"
git submodule update
cargo update -p parity-ui-precompiled
# --precise "$PRECOMPILED_HASH"

echo "*** Committing updated files"
git add .
git add js
git add Cargo.lock
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also needs js/package.json if new version was created. ("Bumping package.json above conditionally updates - if updated, needs to be added as well)

git commit -m "[ci skip] js-precompiled $UTCDATE"
git push origin HEAD:refs/heads/$BRANCH 2>$GITLOG

Expand Down