aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fill tests after changing the receipt formatYoichi Hirai2017-07-19323-40766/+154018
|
* Merge pull request #231 from ethereum/fillchain_createJS_ExampleContractYoichi Hirai2017-07-183-126/+268
|\ | | | | Update createJS_ExampleContract
| * Modify createJS_ExampleContract filler so that in Metropolis, contract ↵Yoichi Hirai2017-07-183-126/+268
| | | | | | | | overwriting does not happen
| * remove old blockchain transition test filesDimitry2017-07-184-16512/+0
| |
| * Whitespace changeYoichi Hirai2017-07-181-2/+0
| | | | | | | | to test my credentials.
* | Merge pull request #221 from ethereum/clear-storage-when-createYoichi Hirai2017-07-172-15/+20
|\| | | | | Expect zeros in the storage of an overwritten contract
| * Expect zeros in the storage of an overwritten contractYoichi Hirai2017-07-142-15/+20
| |
* | remove old blockchain transition test filesDimitry2017-07-164-16512/+0
| |
* | Whitespace changeYoichi Hirai2017-07-141-2/+0
|/ | | | to test my credentials.
* Merge pull request #232 from ethereum/remove-old-fieldswinsvega2017-07-1414-72/+0
|\ | | | | reincarnation-1: Remove "logs", "postStateRoot", "out" fields
| * remove "logs", "postStateRoot", "out" fields in state test fillersFelix Lange2017-07-1314-72/+0
| | | | | | | | | | These fields are not used anymore, but cpp-ethereum copies them into the filled test.
* | Merge pull request #220 from ethereum/exp255winsvega2017-07-142-5/+48
|\ \ | |/ |/| Add a test case baseLength = modLength = 0, but expLength = 2^255
| * Merge branch 'develop' into exp255winsvega2017-07-132223-17491/+25723
| |\ | |/ |/|
* | Merge pull request #222 from ethereum/revert-address-calculationwinsvega2017-07-132224-17492/+25724
|\ \ | | | | | | fix failing Statetests and Blockchain tests
| * | remove unneeded Metropolis testDimitry2017-07-112-1877/+0
| | |
| * | refill blockchaintests on metropolisDimitry2017-07-1116-15309/+15318
| | |
| * | refill general state testsDimitry2017-07-102206-306/+10406
|/ /
| * Add a test case baseLength = modLength = 0, but expLength = 2^255Yoichi Hirai2017-07-102-5/+48
|/
* Merge pull request #219 from ethereum/max-code-size-from-spurious-dragonwinsvega2017-07-102-3/+8
|\ | | | | Max code size is enforced at EIP158, not at EIP150
| * Max code size is enforced at EIP158, not at EIP150Yoichi Hirai2017-07-102-3/+8
| |
* | Merge pull request #217 from ethereum/bcTransitionTestswinsvega2017-07-1036-7158/+18377
|\| | | | | Blockchain transition tests
| * Blockchain transition testsDimitry2017-07-0736-7158/+18377
| |
* | Merge pull request #218 from ethereum/revert-address-calculationwinsvega2017-07-102-1378/+1370
|\ \ | | | | | | [WIP] Fix RPC_API_Test for https://github.com/ethereum/cpp-ethereum/pull/4231
| * | Fix RPC_API_Test for https://github.com/ethereum/cpp-ethereum/pull/4231Yoichi Hirai2017-07-072-1378/+1370
| |/
* | Merge pull request #215 from ethereum/modexp_base_2to64winsvega2017-07-102-5/+107
|\ \ | | | | | | Add modexp tests where base (or exp) length is 2^64
| * | Add a case where exp length is 2^64Yoichi Hirai2017-07-062-3/+62
| | |
| * | Add a modexp test where base length is 2^64Yoichi Hirai2017-07-062-5/+48
| |/
* | Merge pull request #208 from ethereum/returndatacopy_with_2_256_sumwinsvega2017-07-102-0/+250
|\ \ | |/ |/| Add a test RETURNDATACOPY at the beginning of a program should throw …
| * Use CALLDATALOAD instead of CALLDATACOPY and MLOADYoichi Hirai2017-07-062-17/+17
| |
| * Add one-less and one-more numbersYoichi Hirai2017-07-062-10/+99
| |
| * Add a test RETURNDATACOPY at the beginning of a program should throw an ↵Yoichi Hirai2017-07-032-0/+161
| | | | | | | | exception if offset + size = 2^256
* | Merge pull request #207 from ethereum/remove_compiled_codewinsvega2017-07-067-20/+22
|\ \ | | | | | | Remove compiled code
| * | Apparently some bytecode was not faithful compilation of the LLL codeYoichi Hirai2017-07-032-12/+22
| | |
| * | Remove hex codes after the LLL codeYoichi Hirai2017-07-035-8/+0
| |/ | | | | | | Now that LLL compiler is working, these should no longer be necessary.
* | Merge pull request #196 from ethereum/returndatacopy_0_0_after_successful_createwinsvega2017-07-064-0/+345
|\ \ | | | | | | Add test cases for RETURNDATACOPY after a successful CREATE should no…
| * | Use (SSTORE 0 1) in the init code to see if the CREATE succeeds or notYoichi Hirai2017-07-062-8/+17
| | |
| * | Add a test about RETURNDATACOPY after a successful CREATE should throw ↵Yoichi Hirai2017-06-282-0/+161
| | | | | | | | | | | | exception if offset is not zero
| * | Address @winsvega's commentsYoichi Hirai2017-06-282-22/+7
| | |
| * | Add test cases for RETURNDATACOPY after a successful CREATE should not throw ↵Yoichi Hirai2017-06-262-0/+190
| | | | | | | | | | | | if size = offset = zero
* | | Merge pull request #211 from ethereum/nonce-after-collisionwinsvega2017-07-064-275/+9
|\ \ \ | | | | | | | | Fix and refill GeneralStateTest after fixing the nonce change for add…
| * | | Fix and refill GeneralStateTest after fixing the nonce change for address ↵Yoichi Hirai2017-07-064-275/+9
| | | | | | | | | | | | | | | | | | | | | | | | collision https://github.com/ethereum/cpp-ethereum/issues/4225
* | | | Merge pull request #200 from ↵winsvega2017-07-062-0/+176
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | ethereum/returndatacopy-after-failing-call-with-nonzero-offset Add a test about "RETURNDATACOPY after a failing CALL should throw ex…
| * | | | Add a test about "RETURNDATACOPY after a failing CALL should throw exception ↵Yoichi Hirai2017-06-292-0/+176
| | | | | | | | | | | | | | | | | | | | if offset is not zero"
* | | | | Merge pull request #202 from ethereum/returndatacopy_big_sumwinsvega2017-07-062-0/+161
|\ \ \ \ \ | |_|/ / / |/| | | | Add a test 'RETURNDATACOPY at the beginning of a program should throw…
| * | | | Add a test 'RETURNDATACOPY at the beginning of a program should throw an ↵Yoichi Hirai2017-06-302-0/+161
| |/ / / | | | | | | | | | | | | exception if offset + size = 2^64'
* | | | Merge pull request #210 from ethereum/many_zeros_expwinsvega2017-07-052-4/+52
|\ \ \ \ | | | | | | | | | | Price calculation when exp length > 256, and the first word of exponent is zero
| * | | | Price calculation when exp length > 256, and the first word of exponent is zeroYoichi Hirai2017-07-042-4/+52
| | |_|/ | |/| |
* | | | Merge pull request #209 from ethereum/shallowStackOK-removewinsvega2017-07-051-9768/+0
|\ \ \ \ | | | | | | | | | | Remove shallowStackOK.json because shallowStackOKFiller.json does not exist
| * | | | Remove shallowStackOK.json because shallowStackOKFiller.json does not existYoichi Hirai2017-07-041-9768/+0
| |/ / /
* | | | Merge pull request #199 from ethereum/generalbctestwinsvega2017-07-05657-586542/+922235
|\ \ \ \ | |/ / / |/| | | translate bcStateTests into general blockchain tests
| * | | move gasPricer testDimitry2017-07-032-1085/+1085
| | | |
| * | | bcUncleHeaderValidityDimitry2017-07-0328-1993/+3291
| | | |
| * | | convert to new testsDimitry2017-07-03230-0/+856610
| | | |
| * | | remove old testsDimitry2017-07-03261-715542/+0
| | | |
| * | | convert more bctestsDimitry2017-07-0378-33206/+173336
| | | |
| * | | update bctests to gbctestsDimitry2017-07-03181-21889/+69233
| | | |
| * | | translate bcStateTests into general blockchain testsDimitry2017-07-0312-0/+5853
|/ / /
* | | Merge pull request #201 from ethereum/fix-nameswinsvega2017-07-03162-227/+627
|\ \ \ | |/ / |/| | Fix names of test cases in GeneralStateTests to match the file names
| * | Fix names of test cases in GeneralStateTests to match the file namesYoichi Hirai2017-06-30162-227/+627
|/ /
* | Merge pull request #198 from ethereum/morestaticwinsvega2017-06-2812-0/+4425
|\ \ | | | | | | more staticcall tests
| * | more staticcall tests updateDimitry2017-06-285-12/+1208
| | |
| * | more staticcall testsDimitry2017-06-2810-0/+3229
|/ /
* | Merge pull request #194 from ethereum/returndata-read-zero-byteswinsvega2017-06-272-0/+216
|\ \ | | | | | | Add a test for trying returndatacopy 0 0 on an empty return data buffer
| * | Also try RETURNDATACOPY when the calldata is not emptyYoichi Hirai2017-06-272-39/+93
| | |
| * | Add a test for trying returndatacopy 0 0 on an empty return data bufferYoichi Hirai2017-06-232-0/+162
| | |
* | | Merge pull request #192 from ethereum/revert-createwinsvega2017-06-272-0/+175
|\ \ \ | | | | | | | | Add a case where REVERT in an init code passes data to the creating context
| * | | Add a case where REVERT in an init code passes data to the creating contextYoichi Hirai2017-06-222-0/+175
| |/ /
* | | Merge pull request #195 from ethereum/correctStaticwinsvega2017-06-2713-20/+460
|\ \ \ | |_|/ |/| | correct staticcall tests
| * | Fix a test case that expected staticcall to return successfully even when an ↵Yoichi Hirai2017-06-272-7/+12
| | | | | | | | | | | | SSTORE is attempted
| * | Fix a test that expected staticcall to return successfully even when SSTORE ↵Yoichi Hirai2017-06-272-8/+13
| | | | | | | | | | | | is attempted inside
| * | Add a test about staticcall not inheriting the callvalue from the parent ↵Yoichi Hirai2017-06-262-0/+191
| | | | | | | | | | | | call (caused by call instruction)
| * | Add a test about STATICCALL not inheriting the callvalueYoichi Hirai2017-06-262-0/+178
| | | | | | | | | | | | This test failw on cpp-ethereum:develop but succeeds on cpp-ethereum:fix-staticcall
| * | correct staticcall testsDimitry2017-06-245-5/+66
| | |
* | | Merge pull request #193 from ethereum/split-fileswinsvega2017-06-2488-10652/+10956
|\ \ \ | |/ / |/| | GeneralTestFiller formatting
| * | Remove a left-over odd-length hex stringYoichi Hirai2017-06-236-3/+18
| | |
| * | Split GeneralStateTestFiller files that contain multiple testsYoichi Hirai2017-06-2382-10649/+10938
| |/
* | Merge pull request #162 from ethereum/eip86testwinsvega2017-06-2484-289/+4759
|\ \ | | | | | | Eip86test (zeroSigTransaction, newCreate rule)
| * | update revert test with new eip86 rulesDimitry2017-06-231-2/+7
| | |
| * | fix create transactions with eip86 ruleDimitry2017-06-234-12/+265
| | |
| * | more zeroSigTransaction testsDimitry2017-06-2310-4/+3299
| | |
| * | refill tests with new transaction create rules on MetropolisDimitry2017-06-2346-110/+478
| | |
| * | update eip86yann3002017-06-2325-161/+710
|/ /
* | Merge pull request #191 from ethereum/remStBoundswinsvega2017-06-23280-64016/+98821
|\ \ | |/ |/| update tests with 250M gas limit
| * fill Blockhash boundsDimitry2017-06-221-0/+1538
| |
| * update stQuadraticComplexity with 250M gasLimitDimitry2017-06-2261-34823/+53215
| |
| * update stMemoryStress with 250M gas limitDimitry2017-06-22118-4258/+47408
| |
| * remove stBoundsTestDimitry2017-06-22140-28275/+0
|/
* Merge pull request #190 from ethereum/odd-lengthwinsvega2017-06-2217-225/+225
|\ | | | | Add missing '0's in calldata. The hex strings were of odd length
| * Add missing '0's in calldata. The hex strings were of odd lengthYoichi Hirai2017-06-2117-225/+225
|/
* Merge pull request #184 from ethereum/fix-revert-bugwinsvega2017-06-21195-1525/+2507
|\ | | | | Fix revert bug
| * Fill tests according to previous commitYoichi Hirai2017-06-162-1138/+2120
| |
| * Change the filler according toYoichi Hirai2017-06-161-3/+3
| | | | | | | | https://github.com/ethereum/cpp-ethereum/issues/4130
| * Filled GeneralStateTest according to the previous commitYoichi Hirai2017-06-1696-192/+192
| |
| * Fix the timestamp in GeneralStateTestsFiller as suggested inYoichi Hirai2017-06-1696-96/+96
| | | | | | | | https://github.com/ethereum/tests/pull/180/files/bf07e79b8d49e479e55c0b9560686c7429c8ac5b#diff-4b84d89a34b808ecc2bf1ee3a4534ce9
| * Fix the difficulty in the GeneralStateTest fillers as suggested inYoichi Hirai2017-06-1696-96/+96
| | | | | | | | https://github.com/ethereum/tests/pull/180/files/bf07e79b8d49e479e55c0b9560686c7429c8ac5b#diff-4b84d89a34b808ecc2bf1ee3a4534ce9
* | Merge pull request #187 from ethereum/link_testeth_guidewinsvega2017-06-191-0/+4
|\ \ | | | | | | README: add a link to the "Generating Consensus Tests" in cpp-ethereum
| * | README: add a link to the "Generating Consensus Tests" in cpp-ethereumYoichi Hirai2017-06-191-0/+4
| | |
* | | Merge pull request #180 from ethereum/new_expmod_costwinsvega2017-06-19194-8/+46066
|\ \ \ | | |/ | |/| Update tests after changing the gas cost of modexp precompiled contract
| * | Merge branch 'snark_test_filled' into new_expmod_costYoichi Hirai2017-06-14743-5/+617720
| |\ \
| * | | Add modexp tess from PyethereumYoichi Hirai2017-06-14192-0/+32276
| | | |
| * | | Update tests after changing the gas cost of modexp precompiled contractYoichi Hirai2017-06-132-8/+13790
| | |/ | |/|
* | | Merge pull request #172 from ethereum/snark_test_filledwinsvega2017-06-19743-5/+617720
|\ \ \ | |/ / |/| / | |/ Snark test filled
| * Fill the tests following the previous commitYoichi Hirai2017-06-131-3/+3
| |
| * A precompiled contract exists at address 8, so the staticcall does not cause ↵Yoichi Hirai2017-06-131-1/+1
| | | | | | | | an error there
| * fill zeroKnowledge as BlockchainDimitry2017-06-13263-2607/+447395
| |
| * Removing GenStateTestAsBcTemp as it is a temporary directoryYoichi Hirai2017-06-131-0/+1
| | | | | | | | Also add the directory in the list of Git-ignored files
| * Split a filler file into two and rename a test case into a shorter nameYoichi Hirai2017-06-134-502/+506
| |
| * Split a filler file into two and rename a case into a shorter nameYoichi Hirai2017-06-134-502/+506
| |
| * Split a filler file into two and rename a test case into a shorter nameYoichi Hirai2017-06-134-502/+506
| |
| * Split a filler file into two and rename a test case into a shorter nameYoichi Hirai2017-06-134-507/+511
| |
| * Split a filler so that each file contains one caseYoichi Hirai2017-06-134-507/+511
| |
| * Split a filler file and rename a case into a shorter nameYoichi Hirai2017-06-134-507/+511
| |
| * Update GeneralStateTests according to the fillersYoichi Hirai2017-06-13229-2148/+2160
| |
| * Split filler files that contain two test casesYoichi Hirai2017-06-1312-1708/+1720
| |
| * Shorten test namnes according to short file namesYoichi Hirai2017-06-1328-28/+28
| |
| * Shorten the name of another fillerYoichi Hirai2017-06-132-1/+443
| |
| * Rename test cases in the fillers, according to the file namesYoichi Hirai2017-06-1349-49/+49
| |
| * add 0x prefix for coinbase verificationDimitry2017-06-13224-257/+257
| |
| * correct Vitalik's test fillers env infoDimitry2017-06-13224-1030/+1030
| |
| * Add back one final test removed by mistakeYoichi Hirai2017-06-131-0/+317
| |
| * Shorten file namesYoichi Hirai2017-06-13103-64453/+0
| |
| * Split pyethereum_ecpairing_testsFiller.json into files for each test caseYoichi Hirai2017-06-1355-7718/+13789
| |
| * Split pyethereum_ecmul_testsFiller.json into files for each test caseYoichi Hirai2017-06-13323-55096/+98514
| |
| * Split pyethereum_ecadd_testsFiller.json into as many files as test casesYoichi Hirai2017-06-1374-18163/+18303
| |
| * Update elliptic curve related GeneralStateTests using the tests from pyethereumYoichi Hirai2017-06-1310-68/+72143
| |
| * Trying to fill, using a modified snark PRYoichi Hirai2017-06-133-0/+73038
| |
| * Add BlockchainTests about the elliptic curveYoichi Hirai2017-06-135-0/+38550
| |
| * Adding filled tests about elliptic curvesYoichi Hirai2017-06-135-0/+3280
| |
| * Rename paring into pairingYoichi Hirai2017-06-131-1/+1
|/
* Merge pull request #178 from maaktweluit/issue#169winsvega2017-06-131-2/+2
|\ | | | | #169 Update travis.yml with Filler exclude
| * Made check not throw errors with | catmaaktweluit2017-06-061-1/+1
| |
| * Update travis.yml with Filler excludemaaktweluit2017-06-061-2/+2
| | | | | | | | | | - Excluded *Filler.json from checking - Excluded *Filler.json from linting - Updated check output to print all "lines not starting with "./" and the line before" containing the affected file and error close together.
* | Merge pull request #179 from maaktweluit/issue#177winsvega2017-06-131-1/+1
|\ \ | | | | | | #177 Updated README to the moved Fillers
| * | Create README.mdwinsvega2017-06-131-1/+1
| | |
| * | #177 Updated README to the moved Fillersmaaktweluit2017-06-061-1/+1
| |/
* | Merge pull request #181 from ethereum/returndatacopy_throwwinsvega2017-06-1311-196/+187
|\ \ | | | | | | Returndatacopy throws for out of buffer access
| * | Fill tests after making returndatacopy throwYoichi Hirai2017-06-088-153/+184
| | |
| * | Update expectations for the new throwing behavior of RETURNDATACOPYYoichi Hirai2017-06-083-43/+3
| |/
* | Merge pull request #182 from ayrat555/developwinsvega2017-06-132-156/+156
|\ \ | | | | | | Some minor fixes
| * | remove tabsAyrat Badykov2017-06-101-155/+155
| | |
| * | use lowercase digit in bytestring7F testAyrat Badykov2017-06-101-1/+1
| | |
| * | fix READMEAyrat Badykov2017-06-101-1/+1
|/ /
* | remove empty static call testsDimitry2017-06-0945-964/+0
| |
* | remove old bcWallet tests with incorrect namesDimitry2017-06-0941-18369/+0
| |
* | Create stackOverflowM1Filler.jsonwinsvega2017-06-081-17/+17
|/
* Merge pull request #174 from ethereum/returndatacopy_initialwinsvega2017-06-0515-0/+3671
|\ | | | | Adding tests for RETURNDATACOPY and RETURNDATASIZE
| * Fill in blockchain testsYoichi Hirai2017-05-245-0/+2773
| | | | | | | | Based on cpp-ethereum:49cdc48492420776e96ca677bb80cfdf59ebb315
| * Add tests for RETURNDATACOPY after CREATEYoichi Hirai2017-05-242-0/+185
| |
| * Add a test case for a RETURNDATACOPY from an overrunning rangeYoichi Hirai2017-05-242-0/+185
| |
| * Updated the opcodes of RETURNDATA instructionsYoichi Hirai2017-05-246-18/+121
| |
| * Add a test for RETURNDATACOPY following a successful CALLYoichi Hirai2017-05-241-4/+8
| |
| * WIP: hand-assembling this code seems like too much workYoichi Hirai2017-05-241-0/+79
| |
| * Add a test case about RETURNDATASIZE returning zero after initializationYoichi Hirai2017-05-242-0/+171
| |
| * Add the filled testYoichi Hirai2017-05-241-0/+96
| |
| * Fallback on the hex code while lllc implements RETURNDATACOPYYoichi Hirai2017-05-241-0/+1
| |
| * The LLL code should be in bracesYoichi Hirai2017-05-241-1/+1
| |
| * Rename Filter.json into Filler.jsonYoichi Hirai2017-05-241-0/+0
| |
| * Fix LLLYoichi Hirai2017-05-241-1/+1
| |
| * Change the code into LLLYoichi Hirai2017-05-241-1/+1
| |
| * Renaming a filter file with a suffix Filter.jsonYoichi Hirai2017-05-241-0/+0
| |
| * Add a test filter for RETURNDATACOPY initially copying zerosYoichi Hirai2017-05-241-0/+74
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ; hex description ;; store some non-zero word into memory [0..31] 30 ADDRESS 6000 PUSH1 [0] 52 MSTORE ;; RETURNDATACOPY should copy the first word into memory [0..31] 6020 PUSH1 [32] 6000 PUSH1 [0] 6000 PUSH1 [0] 0e RETURNDATACOPY ;; load memory[0..31] onto stack 6000 PUSH1 [0] 51 MLOAD ;; store the topmost stack into storage [0] 6000 PUSH1 [0] 55 SSTORE ;; an implicit `STOP` follows.
* | Merge pull request #176 from ethereum/metro-blockhashwinsvega2017-06-03955-109450/+198787
|\ \ | | | | | | Update tests for BLOCKHASH refactoring EIP
| * | update statetests without blockhashDimitry2017-06-021-80/+0
| | |
| * | update blockchain tests (stRandom stSpecial)Dimitry2017-06-02657-67385/+13975
| | |
| * | refill tests with blockhash as blockchainDimitry2017-06-02195-510/+53008
| | |
| * | move tests with blockhash from state to blockchainDimitry2017-06-02194-8521/+37695
| | |
| * | remove temp filesDimitry2017-06-02658-261173/+0
| | |
| * | make blockhash state test only as blockchain testsDimitry2017-06-021796-132209/+454504
| | |
| * | Update Blockchain Transition tests after EIP96 changes (BLOCKHASH refactoring)Andrei Maiboroda2017-06-024-1044/+1077
|/ /
* | Merge pull request #175 from ethereum/staticcallwinsvega2017-06-01815-35451/+41340
|\ \ | | | | | | more staticcall tests
| * | more staticcall testsDimitry2017-06-01815-35451/+41340
| | |
* | | Merge pull request #173 from ethereum/staticcallwinsvega2017-05-27918-0/+92599
|\| | | |/ |/| Staticcall tests (more commits to come)
| * update static testsDimitry2017-05-23101-121/+10191
| |
| * generate finished tests for staticcallDimitry2017-05-2371-96/+9823
| |
| * move unprepared staticcall tests to subfolderDimitry2017-05-23321-236/+188
| |
| * update static call testsDimitry2017-05-2312-59/+117
| |
| * update staticcall fillersDimitry2017-05-2326-165/+1198
| |
| * update static call testsDimitry2017-05-237-33/+388
| |
| * update static call fillersDimitry2017-05-2369-1619/+708
| |
| * templates for staticcall testsDimitry2017-05-23764-0/+72315
|/
* Merge pull request #170 from pirapira/close-stringwinsvega2017-05-191-1/+1
|\ | | | | Close a string literal
| * Close a string literalYoichi Hirai2017-05-191-1/+1
|/
* Merge pull request #163 from ethereum/newStateRootMetropoliswinsvega2017-05-084-1044/+1044
|\ | | | | reclculate stateRoot for Metropolis rules
| * reclculate stateRoot for Metropolis rulesDimitry2017-04-274-1044/+1044
| |
* | Changed one testVitalik Buterin2017-05-081-1/+1
| |
* | Merge pull request #157 from ethereum/removeStateTestswinsvega2017-04-281467-583974/+0
|\ \ | |/ |/| remove old StateTests
| * remove old StateTestsDimitry2017-04-241467-583974/+0
| |
* | refill dao tests with metropolis rulesDimitry2017-04-261-488/+488
| |
* | metropolis timestamp diff 1000Dimitry2017-04-252-151/+208
| |
* | Merge pull request #159 from ethereum/modexpwinsvega2017-04-252-0/+2581
|\ \ | | | | | | metropolis transition test (block 0x10)
| * | metropolis transition test (block 0x10)Dimitry2017-04-252-0/+2581
| | | | | | | | | | | | difficulty of a block with uncle/without uncle
* | | Merge pull request #158 from ethereum/modexpwinsvega2017-04-252-0/+1386
|\| | | | | | | | modexp tests
| * | modexp testsDimitry2017-04-252-4/+898
| | |
| * | modexp testsDimitry2017-04-252-0/+492
| |/
* | refill memory stress testsDimitry2017-04-2577-1050/+1820
| |
* | replace code as solidity no longer compiles this codeDimitry2017-04-252-2/+4
|/
* Merge pull request #154 from ethereum/refreshwinsvega2017-04-2465-96599/+96943
|\ | | | | refill all tests with latest develop
| * manual blockchain tests prefixed with 0xDimitry2017-04-2110-10954/+10954
| |
| * refill blockchain testsDimitry2017-04-2143-81669/+82149
| |
| * refill vmTestsDimitry2017-04-1912-3976/+3840
| |
* | fix wallet gasDimitry2017-04-213-3/+3
| |
* | Merge pull request #155 from chfast/perf-divwinsvega2017-04-213-214/+260
|\ \ | |/ |/| Add VM performance tests for div+add and add
| * Regenerate VM performance testsPaweł Bylica2017-04-202-101/+173
| |
| * VM tests: remove duplicated performance testsPaweł Bylica2017-04-201-197/+0
| |
| * Add VM performance tests for div+add and addPaweł Bylica2017-04-203-0/+171
|/
* Merge pull request #153 from ethereum/allfieldhexwinsvega2017-04-191739-25614/+25662
|\ | | | | Allfieldhex
| * remove blockhash testsDimitry2017-04-1910-1828/+0
| |
| * refill and fix tests with all fields 0xDimitry2017-04-199-513/+21
| |
| * replace SUICIDE with SELFDESTRUCTDimitry2017-04-191741-25827/+26625
| |
* | move blockhash tests to blockchainDimitry2017-04-191-1/+171
| |
* | remove BblockHash tests from statetestsDimitry2017-04-1910-1570/+0
|/
* Merge pull request #152 from ethereum/yanntouchzeroaddreswinsvega2017-04-192-7/+43
|\ | | | | correct zeroSigOOG test to touch nullsender account
| * correct zeroSigOOG test to touch nullsender accountDimitry2017-04-182-7/+43
|/
* Merge branch 'zeroTransaction' into developDimitry2017-04-1122-319/+6092
|\
| * remove sender on invalid transactions in MetropolisDimitry2017-04-041-38/+19
| |
| * do not include sender in the final test if transaction is invalidDimitry2017-04-042-12/+6
| |
| * zeroSig Transaction state testsDimitry2017-03-2916-51/+4704
| |
| * correct zeroSigTransaction structure tests to eip #208Dimitry2017-03-284-288/+847
| |
| * zeroSig transaction test fillersDimitry2017-03-237-0/+586
| |
* | Removed 0x for consistencyvub2017-04-071-2/+2
| |
* | REVERT test case:Dimitry2017-04-043-507/+5476
| | | | | | | | | | return empty output but with non-zero memory index (e.g. offset 1, length 0). test case 2: big index, size 0.
* | fill blockchain tests with Revert OpCodeDimitry2017-04-0310-0/+54536
| |
* | Merge pull request #149 from ethereum/revertTestswinsvega2017-04-0315-2/+4247
|\ \ | |/ |/| Revert tests
| * refill revert testsDimitry2017-03-249-327/+472
| |
| * more revert testsDimitry2017-03-244-0/+2112
| |
| * revert opcode testsDimitry2017-03-225-16/+967
| |
| * revert opcode test fillersDimitry2017-03-227-77/+630
| |
| * Merge pull request #147 from gumb0/revertTestswinsvega2017-03-226-0/+484
| |\ | | | | | | REVERT opcode tests
| | * Add compiled tests for REVERTAndrei Maiboroda2017-03-223-0/+301
| | |
| | * Failing test for REVERT opcode (temporary, to check if travis gets the ↵Andrei Maiboroda2017-03-221-0/+64
| | | | | | | | | | | | rigght branch)
| | * Simple tests for REVERT opcodeAndrei Maiboroda2017-03-222-0/+119
| |/
* | remote zeroSigTransaction testsDimitry2017-03-237-586/+0
| |
* | zeroSig Transaction test fillersDimitry2017-03-228-3/+610
|/
* refill transaction tests with zeroSigDimitry2017-03-176-140/+443
|
* metropolis zerosig transaction testsDimitry2017-03-174-0/+1156
|
* metropolis zero sig transaction test fillersDimitry2017-03-174-0/+2081
|
* add stderror to RPC testsDimitry2017-03-156-6/+32
|
* node startup timeDimitry2017-03-151-1/+1
|
* calibrate wait time before node startDimitry2017-03-151-1/+1
|
* Merge pull request #145 from ethereum/RPCTestswinsvega2017-03-1416-0/+912
|\ | | | | Rpc tests
| * check eth pathDimitry2017-03-144-7/+15
| | | | | | | | remove unneeded packages
| * remove async and add it as a packageDimitry2017-03-093-5291/+3
| |
| * path to eth as argumentDimitry2017-03-081-10/+11
| |
| * use npm install to download web3 dependenciesDimitry2017-03-085-4/+356
| |
| * move tests to separate foldersDimitry2017-02-179-26/+54
| |
| * eth console to winsvega:RPC_TestsDimitry2017-01-281-0/+0
| |
| * rpc tests on jsDimitry2017-01-2818-91/+435
| |
| * RPC testsDimitry2017-01-257-0/+5467
| |
* | paringTest filler for zeroKnowledgeDimitry2017-03-081-0/+159
| |
* | zeroKnowledge ECDSA function testsDimitry2017-03-063-0/+1256
| |