[Cppunit-cvs] cppunit ChangeLog,1.257,1.258
Brought to you by:
blep
From: Steven R. <sm...@us...> - 2007-01-27 05:47:40
|
Update of /cvsroot/cppunit/cppunit In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv13628 Modified Files: ChangeLog Log Message: Make sure that CPPUNIT_ASSERT_DOUBLES_EQUAL() properly handles non-finite values. Index: ChangeLog =================================================================== RCS file: /cvsroot/cppunit/cppunit/ChangeLog,v retrieving revision 1.257 retrieving revision 1.258 diff -C2 -d -r1.257 -r1.258 *** ChangeLog 12 Jan 2007 05:56:34 -0000 1.257 --- ChangeLog 27 Jan 2007 05:47:37 -0000 1.258 *************** *** 1,2 **** --- 1,12 ---- + 2007-01-26 Steve M. Robbins <sm...@su...> + + * config/ax_cxx_have_isfinite.m4: New. Autoconf macro that tests + for finite() in C++ mode. + * configure.in: Check for isfinite() and finite(). + + * examples/cppunittest/TestAssertTest.cpp (testAssertDoubleEquals): + * src/cppunit/TestAssert.cpp (assertDoubleEquals): Account for + non-finite values. + 2007-01-11 Steve M. Robbins <sm...@su...> |