From 42c38e3c262ea3cdcb416cc1c5452340a392fbfe Mon Sep 17 00:00:00 2001 From: Bert Vandenbroucke <bert.vandenbroucke@ugent.be> Date: Wed, 10 Aug 2016 10:16:49 +0100 Subject: [PATCH] Increased the number of symmetry tests for the exact Riemann solver to cover more paths through it --- tests/testRiemannExact.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/testRiemannExact.c b/tests/testRiemannExact.c index 0c8fba8424..1943820339 100644 --- a/tests/testRiemannExact.c +++ b/tests/testRiemannExact.c @@ -331,7 +331,8 @@ int main() { check_riemann_exact(); /* symmetry test */ - check_riemann_symmetry(); + int i; + for (i = 0; i < 100; ++i) check_riemann_symmetry(); return 0; } -- GitLab