aboutsummaryrefslogtreecommitdiffstats
path: root/tests/state_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'tests/state_test.go')
-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) {