From 69072b8cf7eb8a819c5c472d802a4d706f3f28ad Mon Sep 17 00:00:00 2001 From: andri lim Date: Sun, 8 Dec 2019 07:58:39 +0700 Subject: [PATCH] disable slow bc tests --- tests/test_allowed_to_fail.nim | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/test_allowed_to_fail.nim b/tests/test_allowed_to_fail.nim index 1fa816fcd..dc807e4fd 100644 --- a/tests/test_allowed_to_fail.nim +++ b/tests/test_allowed_to_fail.nim @@ -166,6 +166,11 @@ func skipBCTests*(folder: string, name: string): bool = result = name in allowedFailingBCTests 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 = @[ # Istanbul bc tests # py-evm claims these tests are incorrect @@ -175,6 +180,7 @@ func skipNewBCTests*(folder: string, name: string): bool = "InitCollision.json", # BC OOM tests in CI + "randomStatetest94.json", "static_Return50000_2.json", # istanbul # see allowedFailingGeneralStateTest