tests: disable constantinople statetests

release/1.8
Martin Holst Swende 6 years ago
parent 5d921fa3a0
commit 360a72d54e
No known key found for this signature in database
GPG Key ID: 683B438C05A5DDF0
  1. 4
      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) {

Loading…
Cancel
Save