tests: disable constantinople statetests

This commit is contained in:
Martin Holst Swende 2018-09-19 10:05:44 +02:00
parent 5d921fa3a0
commit 360a72d54e
No known key found for this signature in database
GPG Key ID: 683B438C05A5DDF0
1 changed files with 4 additions and 0 deletions

View File

@ -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) {