From c13b07b68dbd7b044c9f653aa7c162d87912ed88 Mon Sep 17 00:00:00 2001 From: Omar Sobh Date: Thu, 17 Sep 2026 11:12:23 -0500 Subject: [PATCH] rtx-cfd three_d: ignore reasons on the probes (clippy) Co-Authored-By: Claude Fable 5.1 --- .../rtx-cfd/src/solvers/incompressible/three_d/poisson/mod.rs | 2 +- crates/specialized/rtx-cfd/tests/three_d_poisson_identity.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/specialized/rtx-cfd/src/solvers/incompressible/three_d/poisson/mod.rs b/crates/specialized/rtx-cfd/src/solvers/incompressible/three_d/poisson/mod.rs index 0075f06..6144424 100644 --- a/crates/specialized/rtx-cfd/src/solvers/incompressible/three_d/poisson/mod.rs +++ b/crates/specialized/rtx-cfd/src/solvers/incompressible/three_d/poisson/mod.rs @@ -1054,7 +1054,7 @@ mod probe { } #[test] - #[ignore] + #[ignore = "probe: prints the V-cycle symmetry defect across nz and smoothers"] fn probe_symmetry() { for nz in [1usize, 2, 4] { for smoother in [MgSmoother::Lexicographic, MgSmoother::RedBlack] { diff --git a/crates/specialized/rtx-cfd/tests/three_d_poisson_identity.rs b/crates/specialized/rtx-cfd/tests/three_d_poisson_identity.rs index 473b0d8..cabdb76 100644 --- a/crates/specialized/rtx-cfd/tests/three_d_poisson_identity.rs +++ b/crates/specialized/rtx-cfd/tests/three_d_poisson_identity.rs @@ -211,7 +211,7 @@ fn an_extrusion_in_z_is_z_invariant() { } #[test] -#[ignore] +#[ignore = "probe: prints CG iteration counts across nz, coupling and depth"] fn probe_iteration_counts() { let (nx, ny) = (48, 20); let p2 = problem_2d(nx, ny, 7);