File: 0013-Loosen-tolerance-for-one-test.patch

package info (click to toggle)
bornagain 23.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 103,936 kB
  • sloc: cpp: 423,131; python: 40,997; javascript: 11,167; awk: 630; sh: 318; ruby: 173; xml: 130; makefile: 51; ansic: 24
file content (21 lines) | stat: -rw-r--r-- 815 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From: Roland Mas <lolando@debian.org>
Date: Fri, 15 Aug 2025 17:32:30 +0200
Subject: Loosen tolerance for one test

---
 Tests/Unit/Numeric/FormfactorSpecializationTest.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Tests/Unit/Numeric/FormfactorSpecializationTest.cpp b/Tests/Unit/Numeric/FormfactorSpecializationTest.cpp
index a115c1d..c49e33d 100644
--- a/Tests/Unit/Numeric/FormfactorSpecializationTest.cpp
+++ b/Tests/Unit/Numeric/FormfactorSpecializationTest.cpp
@@ -44,7 +44,7 @@ TEST_F(FFSpecializationTest, EllipsoidalCylinderAsCylinder)
     const double R = .8, H = 1.2;
     EllipsoidalCylinder p0(R, R, H);
     Cylinder p1(R, H);
-    run_test(&p0, &p1, 6e-13, 1e-99, 50);
+    run_test(&p0, &p1, 8e-13, 1e-99, 50);
 }
 
 TEST_F(FFSpecializationTest, SphericalSegmentAsSphere)