File: Loose-some-tests-tFFTServer-tests.patch

package info (click to toggle)
casacore 3.7.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 51,648 kB
  • sloc: cpp: 466,901; fortran: 16,372; ansic: 7,411; yacc: 4,714; lex: 2,346; sh: 1,839; python: 629; perl: 531; sed: 499; csh: 34; makefile: 32
file content (36 lines) | stat: -rw-r--r-- 1,612 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
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
From: Ole Streicher <olebole@debian.org>
Date: Thu, 24 Nov 2016 14:31:06 +0100
Subject: Loose some tests tFFTServer tests

This shall help to compile for mips64el and hppa.
---
 scimath/Mathematics/test/tFFTServer.cc  | 2 +-
 scimath/Mathematics/test/tFFTServer2.cc | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/scimath/Mathematics/test/tFFTServer.cc b/scimath/Mathematics/test/tFFTServer.cc
index 22fe127..4aaaee8 100644
--- a/scimath/Mathematics/test/tFFTServer.cc
+++ b/scimath/Mathematics/test/tFFTServer.cc
@@ -1343,7 +1343,7 @@ public:
           }
           AlwaysTrue(result.shape().isEqual(expectedResult.shape()),
                        AipsError);
-          AlwaysTrue(allNearAbs(result, expectedResult, epsilon),
+          AlwaysTrue(allNearAbs(result, expectedResult, 2*epsilon),
                        AipsError);
 
           int out_size = expectedResult.nelements();
diff --git a/scimath/Mathematics/test/tFFTServer2.cc b/scimath/Mathematics/test/tFFTServer2.cc
index ef331d4..3000be8 100644
--- a/scimath/Mathematics/test/tFFTServer2.cc
+++ b/scimath/Mathematics/test/tFFTServer2.cc
@@ -1094,7 +1094,7 @@ int main() {
       expectedResult(0) = Complex(5,0);
       server.fft(result, input, True);
       AlwaysAssert(near(result(0), Complex(5,0), FLT_EPSILON), AipsError);
-      AlwaysAssert(!near(result(4).imag(), 0.0f, FLT_EPSILON), AipsError);
+      AlwaysAssert(!near(result(4).imag(), 0.0f, 2*FLT_EPSILON), AipsError);
       server.fft(reverseTransform, result);
       AlwaysAssert(allNearAbs(input, reverseTransform, FLT_EPSILON),
   		   AipsError);