From 2251f22c1a8c1cf947253294635acce460eeeed5 Mon Sep 17 00:00:00 2001 From: houseme Date: Mon, 24 Aug 2026 18:41:49 +0800 Subject: [PATCH] fix(test-utils): raise recursion limit for lib tests (#6518) Co-authored-by: heihutu --- crates/test-utils/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/test-utils/src/lib.rs b/crates/test-utils/src/lib.rs index 0188c7064..38b93f0bc 100644 --- a/crates/test-utils/src/lib.rs +++ b/crates/test-utils/src/lib.rs @@ -12,6 +12,8 @@ // See the License for the specific language governing permissions and // limitations under the License. +#![recursion_limit = "256"] + //! Shared test bootstrap helpers for RustFS integration tests //! (backlog#1153 infra-1). //!