2018-09-19 16:46:14 +00:00
|
|
|
# Nimbus
|
|
|
|
# Copyright (c) 2018 Status Research & Development GmbH
|
|
|
|
# Licensed under either of
|
|
|
|
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
|
|
|
|
# * MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
|
|
|
# XXX: when all but a relative few dozen, say, GeneralStateTests run, remove this,
|
|
|
|
# but for now, this enables some CI use before that to prevent regressions. In the
|
|
|
|
# separate file here because it would otherwise just distract. Could use all sorts
|
|
|
|
# of O(1) or O(log n) lookup structures, or be more careful to only initialize the
|
|
|
|
# table once, but notion's that it should shrink reasonable quickly and disappear,
|
|
|
|
# being mostly used for short-term regression prevention.
|
|
|
|
func allowedFailingGeneralStateTest*(folder, name: string): bool =
|
2019-03-11 05:12:35 +00:00
|
|
|
let allowedFailingGeneralStateTests = @[
|
2019-04-24 15:37:34 +00:00
|
|
|
"modexp.json",
|
2019-04-24 05:56:10 +00:00
|
|
|
|
2019-04-25 15:33:26 +00:00
|
|
|
# all these tests below actually pass
|
|
|
|
# but they are very slow
|
2019-04-22 15:59:59 +00:00
|
|
|
# byzantium slow
|
|
|
|
"LoopCallsDepthThenRevert3.json",
|
|
|
|
"LoopCallsDepthThenRevert2.json",
|
|
|
|
"LoopCallsDepthThenRevert.json",
|
|
|
|
"static_Call50000.json",
|
|
|
|
"static_Call50000_ecrec.json",
|
|
|
|
"static_Call50000_identity.json",
|
|
|
|
"static_Call50000_identity2.json",
|
|
|
|
"static_Call50000_rip160.json",
|
|
|
|
"static_Call50000_sha256.json",
|
|
|
|
"LoopCallsThenRevert.json",
|
|
|
|
"LoopDelegateCallsDepthThenRevert.json",
|
|
|
|
"recursiveCreateReturnValue.json",
|
|
|
|
"static_Call1024PreCalls2.json",
|
|
|
|
"Callcode1024BalanceTooLow.json",
|
2019-04-23 12:50:45 +00:00
|
|
|
"static_Call1024BalanceTooLow.json",
|
|
|
|
"static_Call1024BalanceTooLow2.json",
|
|
|
|
"static_Call1024OOG.json",
|
|
|
|
"static_Call1024PreCalls3.json",
|
|
|
|
"static_Call1024PreCalls.json",
|
|
|
|
"static_Call1MB1024Calldepth.json",
|
2019-04-22 15:59:59 +00:00
|
|
|
|
2019-03-18 12:43:54 +00:00
|
|
|
# Homestead recursives
|
2019-04-22 15:59:59 +00:00
|
|
|
"ContractCreationSpam.json",
|
2019-02-20 08:27:46 +00:00
|
|
|
"Call1024OOG.json",
|
|
|
|
"Call1024PreCalls.json",
|
|
|
|
"CallRecursiveBombPreCall.json",
|
|
|
|
"Delegatecall1024.json",
|
|
|
|
"Delegatecall1024OOG.json",
|
|
|
|
"JUMPDEST_Attack.json",
|
|
|
|
"JUMPDEST_AttackwithJump.json",
|
|
|
|
"ABAcalls1.json",
|
|
|
|
"ABAcalls2.json",
|
|
|
|
"CallRecursiveBomb0.json",
|
|
|
|
"CallRecursiveBomb0_OOG_atMaxCallDepth.json",
|
|
|
|
"CallRecursiveBomb1.json",
|
|
|
|
"CallRecursiveBomb2.json",
|
|
|
|
"CallRecursiveBombLog.json",
|
|
|
|
"CallRecursiveBombLog2.json",
|
2019-03-18 02:15:37 +00:00
|
|
|
"Call1024BalanceTooLow.json",
|
2019-03-18 12:43:54 +00:00
|
|
|
# Frontier recursives
|
2019-03-18 02:15:37 +00:00
|
|
|
"Callcode1024OOG.json",
|
|
|
|
"callcallcodecall_ABCB_RECURSIVE.json",
|
|
|
|
"callcallcodecallcode_ABCB_RECURSIVE.json",
|
|
|
|
"callcodecallcall_ABCB_RECURSIVE.json",
|
|
|
|
"callcodecallcallcode_ABCB_RECURSIVE.json",
|
|
|
|
"callcodecallcodecall_ABCB_RECURSIVE.json",
|
|
|
|
"callcodecallcodecallcode_ABCB_RECURSIVE.json",
|
2019-04-22 15:59:59 +00:00
|
|
|
"callcallcallcode_ABCB_RECURSIVE.json"
|
2018-11-28 19:02:21 +00:00
|
|
|
]
|
|
|
|
result = name in allowedFailingGeneralStateTests
|