disable slow bc tests
This commit is contained in:
parent
0f2be7c964
commit
69072b8cf7
|
@ -166,6 +166,11 @@ func skipBCTests*(folder: string, name: string): bool =
|
||||||
result = name in allowedFailingBCTests
|
result = name in allowedFailingBCTests
|
||||||
|
|
||||||
func skipNewBCTests*(folder: string, name: string): bool =
|
func skipNewBCTests*(folder: string, name: string): bool =
|
||||||
|
# the new BC tests also contains these slow tests
|
||||||
|
# for Istanbul fork
|
||||||
|
if slowGSTTests(folder, name):
|
||||||
|
return true
|
||||||
|
|
||||||
let allowedFailingBCTests = @[
|
let allowedFailingBCTests = @[
|
||||||
# Istanbul bc tests
|
# Istanbul bc tests
|
||||||
# py-evm claims these tests are incorrect
|
# py-evm claims these tests are incorrect
|
||||||
|
@ -175,6 +180,7 @@ func skipNewBCTests*(folder: string, name: string): bool =
|
||||||
"InitCollision.json",
|
"InitCollision.json",
|
||||||
|
|
||||||
# BC OOM tests in CI
|
# BC OOM tests in CI
|
||||||
|
"randomStatetest94.json",
|
||||||
"static_Return50000_2.json", # istanbul
|
"static_Return50000_2.json", # istanbul
|
||||||
|
|
||||||
# see allowedFailingGeneralStateTest
|
# see allowedFailingGeneralStateTest
|
||||||
|
|
Loading…
Reference in New Issue