Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions test/validation/validation.jl
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,14 @@
]

# We compare the relative error to the analytical solution
@test isapprox(errors[:edac][2], 0.0, atol=0.033)
@test isapprox(errors[:wcsph][2], 0.0, atol=0.045)
@test isapprox(errors[:edac][2], 0.0, atol=0.031)
if VERSION < v"1.11"
# Julia 1.10 CI tests produce larger errors non-deterministically
# for unknown reasons.
@test isapprox(errors[:wcsph][2], 0.0, atol=0.045)
else
@test isapprox(errors[:wcsph][2], 0.0, atol=0.042)
end
end
@trixi_testset "TGV_2D" begin
@trixi_test_nowarn trixi_include(@__MODULE__,
Expand Down
Loading