diff options
author | Martin Holst Swende <martin@swende.se> | 2018-10-16 06:26:47 +0800 |
---|---|---|
committer | Felix Lange <fjl@users.noreply.github.com> | 2018-10-16 06:26:47 +0800 |
commit | 60827dc50fc0892f63fc79704c57b45cf34f991e (patch) | |
tree | 351d66c284989acde5f368f1e5f29890ce96894b /tests/state_test.go | |
parent | 2e98631c5e5724bea1a29b877929b4911bf50b86 (diff) | |
download | go-tangerine-60827dc50fc0892f63fc79704c57b45cf34f991e.tar go-tangerine-60827dc50fc0892f63fc79704c57b45cf34f991e.tar.gz go-tangerine-60827dc50fc0892f63fc79704c57b45cf34f991e.tar.bz2 go-tangerine-60827dc50fc0892f63fc79704c57b45cf34f991e.tar.lz go-tangerine-60827dc50fc0892f63fc79704c57b45cf34f991e.tar.xz go-tangerine-60827dc50fc0892f63fc79704c57b45cf34f991e.tar.zst go-tangerine-60827dc50fc0892f63fc79704c57b45cf34f991e.zip |
tests: update tests, implement no-pow blocks (#17902)
This commit updates our tests with the latest and greatest from ethereum/tests.
It also contains implementation of NoProof for blockchain tests.
Diffstat (limited to 'tests/state_test.go')
-rw-r--r-- | tests/state_test.go | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/state_test.go b/tests/state_test.go index c52e9abb8..ad77e4f33 100644 --- a/tests/state_test.go +++ b/tests/state_test.go @@ -45,14 +45,11 @@ func TestState(t *testing.T) { // Expected failures: st.fails(`^stRevertTest/RevertPrecompiledTouch\.json/EIP158`, "bug in test") st.fails(`^stRevertTest/RevertPrecompiledTouch\.json/Byzantium`, "bug in test") + st.fails(`^stRevertTest/RevertPrecompiledTouch.json/Constantinople`, "bug in test") st.walk(t, stateTestDir, func(t *testing.T, name string, test *StateTest) { for _, subtest := range test.Subtests() { subtest := subtest - if subtest.Fork == "Constantinople" { - // Skipping constantinople due to net sstore gas changes affecting all tests - continue - } key := fmt.Sprintf("%s/%d", subtest.Fork, subtest.Index) name := name + "/" + key t.Run(key, func(t *testing.T) { |