enable EVM sha3_bigsize test on 32 bits
This commit is contained in:
parent
5a978089d6
commit
5c96cf8e87
|
@ -144,9 +144,6 @@ func skipNewGSTTests*(folder: string, name: string): bool =
|
||||||
]
|
]
|
||||||
|
|
||||||
func skipVMTests*(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)
|
result = (folder == "vmPerformance" and "loop" in name)
|
||||||
|
|
||||||
func skipBCTests*(folder: string, name: string): bool =
|
func skipBCTests*(folder: string, name: string): bool =
|
||||||
|
|
|
@ -91,3 +91,6 @@ proc testFixture(fixtures: JsonNode, testStatusIMPL: var TestStatus) =
|
||||||
check(computation.isError)
|
check(computation.isError)
|
||||||
if not fixture{"pre"}.isNil:
|
if not fixture{"pre"}.isNil:
|
||||||
verifyStateDb(fixture{"pre"}, computation.vmState.readOnlyStateDB)
|
verifyStateDb(fixture{"pre"}, computation.vmState.readOnlyStateDB)
|
||||||
|
|
||||||
|
when isMainModule:
|
||||||
|
vmJsonMain()
|
||||||
|
|
Loading…
Reference in New Issue