From 3d2a4b3214507608bb2cd75aa1f0e63d4ec67e8d Mon Sep 17 00:00:00 2001 From: ludamad Date: Wed, 10 Apr 2024 12:41:14 -0400 Subject: [PATCH 1/2] fix: disable flakey vanilla recursion test TODO fix with https://github.com/AztecProtocol/barretenberg/issues/930 --- .../cpp/src/barretenberg/goblin/goblin_recursion.test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/barretenberg/cpp/src/barretenberg/goblin/goblin_recursion.test.cpp b/barretenberg/cpp/src/barretenberg/goblin/goblin_recursion.test.cpp index 623c1118b4ab..3b0ab6244b7e 100644 --- a/barretenberg/cpp/src/barretenberg/goblin/goblin_recursion.test.cpp +++ b/barretenberg/cpp/src/barretenberg/goblin/goblin_recursion.test.cpp @@ -36,7 +36,7 @@ class GoblinRecursionTests : public ::testing::Test { * @brief A full Goblin test that mimicks the basic aztec client architecture * @details */ -TEST_F(GoblinRecursionTests, Vanilla) +TEST_F(GoblinRecursionTests, DISABLED_Vanilla) { Goblin goblin; From ecba346ab33829b6dd08964bd42c141fac53c58b Mon Sep 17 00:00:00 2001 From: ludamad Date: Wed, 10 Apr 2024 12:59:54 -0400 Subject: [PATCH 2/2] Update goblin_recursion.test.cpp --- .../cpp/src/barretenberg/goblin/goblin_recursion.test.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/barretenberg/cpp/src/barretenberg/goblin/goblin_recursion.test.cpp b/barretenberg/cpp/src/barretenberg/goblin/goblin_recursion.test.cpp index 3b0ab6244b7e..43280a800edd 100644 --- a/barretenberg/cpp/src/barretenberg/goblin/goblin_recursion.test.cpp +++ b/barretenberg/cpp/src/barretenberg/goblin/goblin_recursion.test.cpp @@ -36,6 +36,8 @@ class GoblinRecursionTests : public ::testing::Test { * @brief A full Goblin test that mimicks the basic aztec client architecture * @details */ +// TODO fix with https://github.com/AztecProtocol/barretenberg/issues/930 +// intermittent failures, presumably due to uninitialized memory TEST_F(GoblinRecursionTests, DISABLED_Vanilla) { Goblin goblin;