aboutsummaryrefslogtreecommitdiffstats
path: root/tests/block_test_util.go
Commit message (Collapse)AuthorAgeFilesLines
* Add --skip option to CLITaylor Gerring2015-06-191-7/+7
| | | | | Disassociates hardcoded tests to skip when running via CLI. Tests still skipped when running `go test`
* Add stdin optionTaylor Gerring2015-06-191-23/+57
|
* Cleanup loggingTaylor Gerring2015-06-191-3/+3
|
* Fix geth blocktest commandTaylor Gerring2015-06-191-2/+2
|
* DRY file loadingTaylor Gerring2015-06-191-44/+12
|
* More consistent test interfaces + test skippingTaylor Gerring2015-06-191-11/+16
|
* Return error up stack instead of passing testing var downTaylor Gerring2015-06-191-10/+13
|
* Separate and identify tests runnersTaylor Gerring2015-06-191-1/+2
|
* Split tests from helper codeTaylor Gerring2015-06-191-0/+66
|
* xeth, tests: fixed apiobscuren2015-06-171-1/+1
|
* Update key store to new spec but keep address field for nowGustav Simonsson2015-05-121-1/+1
| | | | * Also fix address types post-rebase
* core: return the index of the block that failed when inserting a chainobscuren2015-04-291-1/+1
|
* Add loading of block test privkey if presentGustav Simonsson2015-04-281-7/+20
|
* Add block header validations for block testsGustav Simonsson2015-04-231-0/+82
|
* Finally, glorious HEXGustav Simonsson2015-04-231-4/+4
|
* Further fixes to block test wrapperGustav Simonsson2015-04-211-47/+56
| | | | | | | | | | | | * Move go test wrapper for block tests from cmd/geth to tests * Fix logic for when tests are valid or not, by adding correct validations for expected valid/invalid blocks * Change block insertion helper to work on single blocks * Add one test case for each file in BlockTests and comment out the tests which are currently failing * Add Skip call in all block tests in lieu of performance fixes around ethash cache which are needed before it will be fast enough to start / stop the node between each test
* Add block tests wrapper and fixes for tx testsGustav Simonsson2015-04-201-0/+345
* Add fixes to parsing and converting of fields in tx tests * Correct logic in tx tests; validation of fields and correct logic for when RLP decoding works/fails and when this is expected or not * Rename files for consistency * Add block tests wrapper to run block tests with go test