Update of /cvsroot/cppunit/cppunit
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3590
Modified Files:
ChangeLog NEWS
Log Message:
* include/cppunit/config/SourcePrefix.h: disable warning #4996
(sprintf is deprecated) for visual studio 2005.
* include/cppunit/TestAssert.h: use sprintf_s instead of sprintf for
visual studio 2005.
* examples/ClockerPlugIn/ClockerPlugIn.cpp
* examples/DumperPlugIn/DumperPlugIn.cpp: use SourcePrefix.h. Fixed
wrong macro usage to implement DllMain.
* examples/msvc6/HostApp/ExamplesTestCase.h
* examples/msvc6/HostApp/ExamplesTestCase.cpp
* examples/simple/ExamplesTestCase.h
* examples/simple/ExamplesTestCase.cpp: removed divideByZero test case
as it cause some crash on some platforms.
Index: NEWS
===================================================================
RCS file: /cvsroot/cppunit/cppunit/NEWS,v
retrieving revision 1.92
retrieving revision 1.93
diff -C2 -d -r1.92 -r1.93
*** NEWS 15 Jul 2005 19:04:22 -0000 1.92
--- NEWS 6 Nov 2005 16:58:20 -0000 1.93
***************
*** 1,3 ****
! New in CppUnit 1.11.0:
----------------------
--- 1,3 ----
! New in CppUnit 1.11.4:
----------------------
***************
*** 72,75 ****
--- 72,77 ----
instead of
AM_PATH_CPPUNIT(1.9.0)"
+
+ - Visual Studio 2005: removed deprecated warning.
* Documentation:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/cppunit/cppunit/ChangeLog,v
retrieving revision 1.241
retrieving revision 1.242
diff -C2 -d -r1.241 -r1.242
*** ChangeLog 27 Oct 2005 19:34:11 -0000 1.241
--- ChangeLog 6 Nov 2005 16:58:20 -0000 1.242
***************
*** 1,2 ****
--- 1,20 ----
+ 2005-11-06 Baptiste Lepilleur <gai...@fr...>
+ * include/cppunit/config/SourcePrefix.h: disable warning #4996
+ (sprintf is deprecated) for visual studio 2005.
+
+ * include/cppunit/TestAssert.h: use sprintf_s instead of sprintf for
+ visual studio 2005.
+
+ * examples/ClockerPlugIn/ClockerPlugIn.cpp
+ * examples/DumperPlugIn/DumperPlugIn.cpp: use SourcePrefix.h. Fixed
+ wrong macro usage to implement DllMain.
+
+ * examples/msvc6/HostApp/ExamplesTestCase.h
+ * examples/msvc6/HostApp/ExamplesTestCase.cpp
+ * examples/simple/ExamplesTestCase.h
+ * examples/simple/ExamplesTestCase.cpp: removed divideByZero test case
+ as it cause some crash on some platforms.
+
+
2005-10-27 Baptiste Lepilleur <gai...@fr...>
* include/cppunit/TestAssert.h: added missing #include <stdio.h>
|