hack around a bug in cppunit/mingw/windows.
authorRobin Gareus <robin@gareus.org>
Sun, 13 Sep 2015 18:23:12 +0000 (20:23 +0200)
committerRobin Gareus <robin@gareus.org>
Sun, 13 Sep 2015 18:23:12 +0000 (20:23 +0200)
libs/evoral/test/CurveTest.cpp

index 3f30062941552ba24f58dad57b1992cdd51d373f..0cf51ec8ff9fc3e620a10c4016c2defbf0cc21b2 100644 (file)
@@ -5,6 +5,23 @@
 
 CPPUNIT_TEST_SUITE_REGISTRATION (CurveTest);
 
+#if defined(PLATFORM_WINDOWS) && defined(COMPILER_MINGW)
+/* cppunit-1.13.2  uses assertion_traits<double>
+ *    sprintf( , "%.*g", precision, x)
+ * to format a double. The actual comparison is performed on a string.
+ * This is problematic with mingw/windows|wine, "%.*g" formatting fails.
+ *
+ * This quick hack compares float, however float compatisons are at most Y.MMMM+eXX,
+ * the max precision needs to be limited. to the last mantissa digit.
+ *
+ * Anyway, actual maths is verified with Linux and OSX unit-tests,
+ * and this needs to go to https://sourceforge.net/p/cppunit/bugs/
+ */
+#define MAXPREC(P) ((P) < .0005 ? .0005 : (P))
+#define CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(M,A,B,P) CPPUNIT_ASSERT_EQUAL_MESSAGE(M, (float)rint ((A) / MAXPREC(P)),(float)rint ((B) / MAXPREC(P)))
+#define CPPUNIT_ASSERT_DOUBLES_EQUAL(A,B,P) CPPUNIT_ASSERT_EQUAL((float)rint ((A) / MAXPREC(P)),(float)rint ((B) / MAXPREC(P)))
+#endif
+
 using namespace Evoral;
 
 // linear y = Y0 + YS * x ;  with x = i * (X1 - X0) + X0; and i = [0..1023]