From 9ab373d7e1f35a4cf272c0eb121f0963a1b48471 Mon Sep 17 00:00:00 2001 From: Daniel Doehring Date: Tue, 17 Sep 2024 14:50:15 +0200 Subject: [PATCH] Update test/test_tree_1d_advection.jl --- test/test_tree_1d_advection.jl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/test_tree_1d_advection.jl b/test/test_tree_1d_advection.jl index bf44b7e072d..f061e2e1c30 100644 --- a/test/test_tree_1d_advection.jl +++ b/test/test_tree_1d_advection.jl @@ -135,6 +135,10 @@ end t = sol.t[end] u_ode = sol.u[end] du_ode = similar(u_ode) + # Larger values for allowed allocations due to usage of custom + # integrator which are not *recorded* for the methods from + # OrdinaryDiffEq.jl + # Corresponding issue: https://github.com/trixi-framework/Trixi.jl/issues/1877 @test (@allocated Trixi.rhs!(du_ode, u_ode, semi, t)) < 8000 end end