diff options
author | Martin Holst Swende <martin@swende.se> | 2017-09-05 17:24:26 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2017-09-05 17:24:26 +0800 |
commit | 8cab3ab4350fe06f5dd1e9bb9ce5f559c08bc4cf (patch) | |
tree | 6267317ecc6cdb573868d71880fbe88f1db4037a /cmd/evm/main.go | |
parent | 504278e8398ef787d4f6f73178afa342a31a88ed (diff) | |
download | go-tangerine-8cab3ab4350fe06f5dd1e9bb9ce5f559c08bc4cf.tar go-tangerine-8cab3ab4350fe06f5dd1e9bb9ce5f559c08bc4cf.tar.gz go-tangerine-8cab3ab4350fe06f5dd1e9bb9ce5f559c08bc4cf.tar.bz2 go-tangerine-8cab3ab4350fe06f5dd1e9bb9ce5f559c08bc4cf.tar.lz go-tangerine-8cab3ab4350fe06f5dd1e9bb9ce5f559c08bc4cf.tar.xz go-tangerine-8cab3ab4350fe06f5dd1e9bb9ce5f559c08bc4cf.tar.zst go-tangerine-8cab3ab4350fe06f5dd1e9bb9ce5f559c08bc4cf.zip |
cmd/evm: adds ability to run individual state test file (#14998)
* cmd/evm: adds ability to run individual state test file
* cmd/evm: Fix statetest runner to be more json friendly
* cmd/evm, tests: minor polishes, dump state on fail
Diffstat (limited to 'cmd/evm/main.go')
-rw-r--r-- | cmd/evm/main.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/evm/main.go b/cmd/evm/main.go index a2e3b048e..6c39cf8b8 100644 --- a/cmd/evm/main.go +++ b/cmd/evm/main.go @@ -143,6 +143,7 @@ func init() { compileCommand, disasmCommand, runCommand, + stateTestCommand, } } |