diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-08-21 17:23:03 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-21 17:23:03 +0800 |
commit | afdfdebd87535032c7796bfcca0ce158dea7e32c (patch) | |
tree | 04385e7070a2bfd29e3136f7817000ba9aa07e07 /tests | |
parent | e311bb520a1869e42ed30eb1487a751fa30cd0b4 (diff) | |
parent | 1bbd400899304152b15a0fcd3cf1946442171c29 (diff) | |
download | dexon-afdfdebd87535032c7796bfcca0ce158dea7e32c.tar.gz dexon-afdfdebd87535032c7796bfcca0ce158dea7e32c.tar.zst dexon-afdfdebd87535032c7796bfcca0ce158dea7e32c.zip |
Merge pull request #14983 from karalabe/metropolis-revert
core/vm: implement REVERT metropolis opcode
Diffstat (limited to 'tests')
-rw-r--r-- | tests/state_test.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/state_test.go b/tests/state_test.go index ab6dc423f..7e5516e7e 100644 --- a/tests/state_test.go +++ b/tests/state_test.go @@ -40,6 +40,9 @@ func TestState(t *testing.T) { st.fails(`^stRevertTest/RevertDepthCreateAddressCollision\.json/EIP15[08]/[67]`, "bug in test") st.fails(`^stRevertTest/RevertPrecompiledTouch\.json/EIP158`, "bug in test") st.fails(`^stRevertTest/RevertPrefoundEmptyOOG\.json/EIP158`, "bug in test") + st.fails(`^stRevertTest/RevertDepthCreateAddressCollision\.json/Byzantium/[67]`, "bug in test") + st.fails(`^stRevertTest/RevertPrecompiledTouch\.json/Byzantium`, "bug in test") + st.fails(`^stRevertTest/RevertPrefoundEmptyOOG\.json/Byzantium`, "bug in test") st.walk(t, stateTestDir, func(t *testing.T, name string, test *StateTest) { for _, subtest := range test.Subtests() { |