aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2018-09-21 19:16:18 +0800
committerGitHub <noreply@github.com>2018-09-21 19:16:18 +0800
commitee92bc537f159c2202058a33e015684cc2bca04c (patch)
tree8f89d2e71d98f26024069be193023ef5da2a0d3f /tests
parent81080bf8cb7f60f59a68cf48998a29a1a2e10cb9 (diff)
parent360a72d54e9ea6fbf8ddb4872cc514d241ea2042 (diff)
downloadgo-tangerine-ee92bc537f159c2202058a33e015684cc2bca04c.tar
go-tangerine-ee92bc537f159c2202058a33e015684cc2bca04c.tar.gz
go-tangerine-ee92bc537f159c2202058a33e015684cc2bca04c.tar.bz2
go-tangerine-ee92bc537f159c2202058a33e015684cc2bca04c.tar.lz
go-tangerine-ee92bc537f159c2202058a33e015684cc2bca04c.tar.xz
go-tangerine-ee92bc537f159c2202058a33e015684cc2bca04c.tar.zst
go-tangerine-ee92bc537f159c2202058a33e015684cc2bca04c.zip
Merge pull request #17383 from holiman/eip1283
Eip1283
Diffstat (limited to 'tests')
-rw-r--r--tests/state_test.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/state_test.go b/tests/state_test.go
index b61a1ca28..91c9a9f44 100644
--- a/tests/state_test.go
+++ b/tests/state_test.go
@@ -41,6 +41,10 @@ func TestState(t *testing.T) {
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) {