enable EVM sha3_bigsize test on 32 bits

This commit is contained in:
andri lim 2019-12-09 16:55:33 +07:00 committed by zah
parent 5a978089d6
commit 5c96cf8e87
2 changed files with 3 additions and 3 deletions

View File

@ -144,9 +144,6 @@ func skipNewGSTTests*(folder: string, name: string): bool =
]
func skipVMTests*(folder: string, name: string): bool =
when sizeof(int) == 4:
if name == "sha3_bigSize.json":
return true
result = (folder == "vmPerformance" and "loop" in name)
func skipBCTests*(folder: string, name: string): bool =

View File

@ -91,3 +91,6 @@ proc testFixture(fixtures: JsonNode, testStatusIMPL: var TestStatus) =
check(computation.isError)
if not fixture{"pre"}.isNil:
verifyStateDb(fixture{"pre"}, computation.vmState.readOnlyStateDB)
when isMainModule:
vmJsonMain()