From 0f2be7c964856c16307c9dab337c7e1f986606c0 Mon Sep 17 00:00:00 2001 From: andri lim Date: Sun, 8 Dec 2019 06:55:18 +0700 Subject: [PATCH] disable problematic tests --- tests/test_allowed_to_fail.nim | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/tests/test_allowed_to_fail.nim b/tests/test_allowed_to_fail.nim index 023b92c08..1fa816fcd 100644 --- a/tests/test_allowed_to_fail.nim +++ b/tests/test_allowed_to_fail.nim @@ -151,9 +151,12 @@ func skipBCTests*(folder: string, name: string): bool = # BlockChain slow tests "SuicideIssue.json", - # BC OOM tests + # BC OOM tests in CI "randomStatetest94.json", # pre istanbul + # BC huge memory consumption + "DelegateCallSpam.json", + # pre istanbul failing "SuicidesMixingCoinbase.json", "suicideCoinbase.json", @@ -171,8 +174,15 @@ func skipNewBCTests*(folder: string, name: string): bool = "RevertInCreateInInitCreate2.json", "InitCollision.json", - # BC OOM - "static_Return50000_2.json" # istanbul + # BC OOM tests in CI + "static_Return50000_2.json", # istanbul + + # see allowedFailingGeneralStateTest + "modexp.json", + "create2noCash.json", + + # BC huge memory consumption + "DelegateCallSpam.json" ] result = name in allowedFailingBCTests @@ -180,6 +190,7 @@ func skipNewBCTests*(folder: string, name: string): bool = func skipTxTests*(folder: string, name: string): bool = # from test_transaction_json when sizeof(int) == 4: + # see nim-eth#95 result = name == "RLPHeaderSizeOverflowInt32.json" else: false