cppunit-cvs Mailing List for CppUnit - C++ port of JUnit (Page 20)
Brought to you by:
blep
You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(94) |
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
|
Feb
(114) |
Mar
(80) |
Apr
|
May
|
Jun
(36) |
Jul
(67) |
Aug
(37) |
Sep
(33) |
Oct
(28) |
Nov
(91) |
Dec
(16) |
2006 |
Jan
(1) |
Feb
(7) |
Mar
(45) |
Apr
|
May
|
Jun
(36) |
Jul
(7) |
Aug
|
Sep
(32) |
Oct
(3) |
Nov
|
Dec
|
2007 |
Jan
(29) |
Feb
(11) |
Mar
(5) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(35) |
Sep
|
Oct
|
Nov
|
Dec
|
2008 |
Jan
|
Feb
(14) |
Mar
|
Apr
|
May
|
Jun
(5) |
Jul
(13) |
Aug
|
Sep
|
Oct
(3) |
Nov
|
Dec
(15) |
From: Baptiste L. <bl...@us...> - 2005-07-20 21:07:02
|
Update of /cvsroot/cppunit/cppunit2/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8806/src Modified Files: cpput_lib.suo Log Message: * Added IntrusivePtr, a reference counted smart-pointer * Changed Test hierarchy and TestFixture to use IntrusivePtr instead of SharedPtr (this allows simple upcasting). Index: cpput_lib.suo =================================================================== RCS file: /cvsroot/cppunit/cppunit2/src/cpput_lib.suo,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 Binary files /tmp/cvsJstJNi and /tmp/cvsZgCmUc differ |
From: Baptiste L. <bl...@us...> - 2005-07-20 21:07:02
|
Update of /cvsroot/cppunit/cppunit2/src/cpput In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8806/src/cpput Modified Files: cpput.vcproj testsuite.cpp Log Message: * Added IntrusivePtr, a reference counted smart-pointer * Changed Test hierarchy and TestFixture to use IntrusivePtr instead of SharedPtr (this allows simple upcasting). Index: testsuite.cpp =================================================================== RCS file: /cvsroot/cppunit/cppunit2/src/cpput/testsuite.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** testsuite.cpp 5 Mar 2005 12:29:39 -0000 1.8 --- testsuite.cpp 20 Jul 2005 21:06:51 -0000 1.9 *************** *** 64,70 **** void ! TestSuite::add( const TestSuitePtr &test ) { ! add( CppTL::staticPointerCast<Test>( test ) ); } --- 64,71 ---- void ! TestSuite::add( const TestSuitePtr &testSuite ) { ! TestPtr test( testSuite.get() ); ! add( test ); } Index: cpput.vcproj =================================================================== RCS file: /cvsroot/cppunit/cppunit2/src/cpput/cpput.vcproj,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** cpput.vcproj 4 Jul 2005 08:11:25 -0000 1.35 --- cpput.vcproj 20 Jul 2005 21:06:51 -0000 1.36 *************** *** 133,140 **** Filter=""> <File ! RelativePath=".\SConscript"> </File> <File ! RelativePath="..\cpputtest\SConscript"> </File> <File --- 133,140 ---- Filter=""> <File ! RelativePath="..\cpputtest\SConscript"> </File> <File ! RelativePath=".\SConscript"> </File> <File *************** *** 220,223 **** --- 220,226 ---- </File> <File + RelativePath="..\..\include\cpptl\intrusiveptr.h"> + </File> + <File RelativePath="..\..\include\cpptl\reflection.h"> </File> |
From: Baptiste L. <bl...@us...> - 2005-07-20 21:07:02
|
Update of /cvsroot/cppunit/cppunit2/src/opentesttest In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8806/src/opentesttest Modified Files: packetstest.cpp Log Message: * Added IntrusivePtr, a reference counted smart-pointer * Changed Test hierarchy and TestFixture to use IntrusivePtr instead of SharedPtr (this allows simple upcasting). Index: packetstest.cpp =================================================================== RCS file: /cvsroot/cppunit/cppunit2/src/opentesttest/packetstest.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** packetstest.cpp 4 Jul 2005 08:12:34 -0000 1.1 --- packetstest.cpp 20 Jul 2005 21:06:51 -0000 1.2 *************** *** 79,82 **** --- 79,83 ---- { Pos testDataLength = strlen(testData[index1]); + packets_.reset( new OpenTest::Packets( 4 ) ); // notes: test fails if using the same packets... packets_->beginMessage(); packets_->serializationWrite( testData[index1], testDataLength ); |
From: Baptiste L. <bl...@us...> - 2005-07-15 20:17:48
|
Update of /cvsroot/cppunit/cppunit/devtools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24385 Modified Files: prepare-cvs.sh Log Message: convert msvc project using dos eol Index: prepare-cvs.sh =================================================================== RCS file: /cvsroot/cppunit/cppunit/devtools/prepare-cvs.sh,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** prepare-cvs.sh 15 Jul 2005 19:31:09 -0000 1.1 --- prepare-cvs.sh 15 Jul 2005 20:17:39 -0000 1.2 *************** *** 2,6 **** --- 2,11 ---- set -e + perl -pi -e 's/\n/\r\n/g' `find $1 -name '*.ds?'` \ + $1/contrib/msvc/* \ + $1/INSTALL-WIN32.txt + (cd $1 && rm -rf `find . -name CVS`) + tar cf $1.tar $1 gzip -9 $1.tar |
From: Baptiste L. <bl...@us...> - 2005-07-15 19:31:19
|
Update of /cvsroot/cppunit/cppunit/devtools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11074/devtools Added Files: prepare-cvs.sh Log Message: release 1.11.0 --- NEW FILE: prepare-cvs.sh --- #! /bin/sh set -e (cd $1 && rm -rf `find . -name CVS`) tar cf $1.tar $1 gzip -9 $1.tar |
From: Baptiste L. <bl...@us...> - 2005-07-15 19:31:19
|
Update of /cvsroot/cppunit/cppunit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11074 Modified Files: configure.in Log Message: release 1.11.0 Index: configure.in =================================================================== RCS file: /cvsroot/cppunit/cppunit/configure.in,v retrieving revision 1.79 retrieving revision 1.80 diff -C2 -d -r1.79 -r1.80 *** configure.in 14 Jun 2005 21:28:46 -0000 1.79 --- configure.in 15 Jul 2005 19:31:08 -0000 1.80 *************** *** 15,20 **** # CPPUNIT_MAJOR_VERSION=1 ! CPPUNIT_MINOR_VERSION=10 ! CPPUNIT_MICRO_VERSION=3 CPPUNIT_INTERFACE_AGE=0 CPPUNIT_BINARY_AGE=0 --- 15,20 ---- # CPPUNIT_MAJOR_VERSION=1 ! CPPUNIT_MINOR_VERSION=11 ! CPPUNIT_MICRO_VERSION=0 CPPUNIT_INTERFACE_AGE=0 CPPUNIT_BINARY_AGE=0 |
From: Baptiste L. <bl...@us...> - 2005-07-15 19:11:21
|
Update of /cvsroot/cppunit/cppunit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6076 Modified Files: .cvsignore Log Message: * added empty lib directory required to build cppunit from cvs with msvc. Index: .cvsignore =================================================================== RCS file: /cvsroot/cppunit/cppunit/.cvsignore,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** .cvsignore 7 May 2003 21:10:12 -0000 1.6 --- .cvsignore 15 Jul 2005 19:11:07 -0000 1.7 *************** *** 7,11 **** cppunit.spec cppunit-config - lib stamp-h autom4te.cache --- 7,10 ---- |
From: Baptiste L. <bl...@us...> - 2005-07-15 19:11:05
|
Update of /cvsroot/cppunit/cppunit/lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6003 Added Files: .cvsignore Log Message: * added empty lib directory required to build cppunit from cvs with msvc. --- NEW FILE: .cvsignore --- *.dll *.ilk *.exe *.lib *.pdb |
From: Baptiste L. <bl...@us...> - 2005-07-15 19:07:57
|
Update of /cvsroot/cppunit/cppunit/lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5105/lib Log Message: Directory /cvsroot/cppunit/cppunit/lib added to the repository |
From: Baptiste L. <bl...@us...> - 2005-07-15 19:05:12
|
Update of /cvsroot/cppunit/cppunit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4491 Modified Files: ChangeLog Log Message: * release 1.11.0 Index: ChangeLog =================================================================== RCS file: /cvsroot/cppunit/cppunit/ChangeLog,v retrieving revision 1.235 retrieving revision 1.236 diff -C2 -d -r1.235 -r1.236 *** ChangeLog 15 Jul 2005 18:52:36 -0000 1.235 --- ChangeLog 15 Jul 2005 19:04:54 -0000 1.236 *************** *** 4,7 **** --- 4,10 ---- generation of doc/Makefile.am. + * cppunit.spec.in: Applied patch #1232555 from Patrice Dumas. This file is + use for RPM packaging. + * development snapshot release 1.11.0. |
From: Baptiste L. <bl...@us...> - 2005-07-15 19:04:31
|
Update of /cvsroot/cppunit/cppunit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4433 Modified Files: NEWS Log Message: * release 1.11.0 Index: NEWS =================================================================== RCS file: /cvsroot/cppunit/cppunit/NEWS,v retrieving revision 1.91 retrieving revision 1.92 diff -C2 -d -r1.91 -r1.92 *** NEWS 5 Jul 2005 21:17:39 -0000 1.91 --- NEWS 15 Jul 2005 19:04:22 -0000 1.92 *************** *** 1,3 **** ! New in CppUnit 1.10.4: ---------------------- --- 1,3 ---- ! New in CppUnit 1.11.0: ---------------------- |
From: Baptiste L. <bl...@us...> - 2005-07-15 19:03:41
|
Update of /cvsroot/cppunit/cppunit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4274 Modified Files: cppunit.spec.in Log Message: * cppunit.spec.in: Applied patch #1232555 from Patrice Dumas. This file is use for RPM packaging. Index: cppunit.spec.in =================================================================== RCS file: /cvsroot/cppunit/cppunit/cppunit.spec.in,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** cppunit.spec.in 15 May 2001 22:32:41 -0000 1.3 --- cppunit.spec.in 15 Jul 2005 19:03:30 -0000 1.4 *************** *** 1,22 **** ! %define RELEASE 1 ! %define rel %{?CUSTOM_RELEASE} %{!?CUSTOM_RELEASE:%RELEASE} ! ! %define lib_name cppunit ! ! Name: @PACKAGE@ Version: @VERSION@ ! Release: %rel Summary: C++ Port of JUnit Testing Framework ! Copyright: LGPL Group: Development/Libraries - Vendor: The CppUnit Project - Packager: Bastiaan Bakker <bas...@li...> Url: http://cppunit.sourceforge.net/ ! Source: ftp://download.sourceforge.net/pub/sourceforge/cppunit/%name-%version.tar.gz ! ! Prefix: %_prefix ! BuildRoot: %_tmppath/%name-%version-root %description --- 1,13 ---- ! Name: cppunit Version: @VERSION@ ! Release: 2 Summary: C++ Port of JUnit Testing Framework ! License: LGPL Group: Development/Libraries Url: http://cppunit.sourceforge.net/ + Source: ftp://download.sourceforge.net/pub/sourceforge/cppunit/cppunit-%version.tar.gz ! BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description *************** *** 34,49 **** %prep ! rm -rf $RPM_BUILD_ROOT ! ! %setup ! CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{prefix} --enable-doxygen %build ! make %install rm -rf $RPM_BUILD_ROOT ! ! make prefix=$RPM_BUILD_ROOT%{prefix} install %clean --- 25,39 ---- %prep ! %setup -q %build ! %configure --enable-doxygen ! make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT ! make install DESTDIR=$RPM_BUILD_ROOT ! rm -f $RPM_BUILD_ROOT/%{_libdir}/*.la ! rm -rf $RPM_BUILD_ROOT/%{_datadir}/cppunit %clean *************** *** 51,64 **** %files ! %defattr(-,root,root,755) ! %attr(755,root,root) %prefix/lib/lib*.so.* ! %doc AUTHORS COPYING INSTALL NEWS README THANKS ChangeLog ! %attr(755,root,root) %prefix/bin/cppunit-config ! %prefix/include/* ! %prefix/man/* ! %prefix/share/* ! %attr(755,root,root) %prefix/lib/lib*.so ! %attr(644,root,root) %prefix/lib/*.*a %files doc %doc doc/html/* --- 41,61 ---- %files ! %defattr(-,root,root,-) ! %{_bindir}/cppunit-config ! %{_bindir}/DllPlugInTester ! %{_includedir}/cppunit/* ! %{_mandir}/man1/* ! %{_datadir}/aclocal/* ! %{_libdir}/libcppunit*.so.* ! %{_libdir}/libcppunit.so ! %{_libdir}/libcppunit.a ! %doc AUTHORS COPYING INSTALL NEWS README THANKS ChangeLog TODO BUGS doc/FAQ %files doc %doc doc/html/* + + %changelog + * Mon Jul 4 2005 Patrice Dumas <du...@ce...> + - update using the fedora template + * Sat Apr 14 2001 Bastiaan Bakker <bas...@li...> + - Initial release |
From: Baptiste L. <bl...@us...> - 2005-07-15 18:52:45
|
Update of /cvsroot/cppunit/cppunit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1889 Modified Files: ChangeLog Log Message: development snapshot release 1.11.0. Index: ChangeLog =================================================================== RCS file: /cvsroot/cppunit/cppunit/ChangeLog,v retrieving revision 1.234 retrieving revision 1.235 diff -C2 -d -r1.234 -r1.235 *** ChangeLog 15 Jul 2005 17:57:54 -0000 1.234 --- ChangeLog 15 Jul 2005 18:52:36 -0000 1.235 *************** *** 4,7 **** --- 4,9 ---- generation of doc/Makefile.am. + * development snapshot release 1.11.0. + 2005-07-09 Baptiste Lepilleur <gai...@fr...> |
From: Baptiste L. <bl...@us...> - 2005-07-15 17:58:03
|
Update of /cvsroot/cppunit/cppunit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20966 Modified Files: ChangeLog Log Message: * config/bb_enable_doxygen.m4: Rolled back Brad Hards patch as it break generation of doc/Makefile.am. Index: ChangeLog =================================================================== RCS file: /cvsroot/cppunit/cppunit/ChangeLog,v retrieving revision 1.233 retrieving revision 1.234 diff -C2 -d -r1.233 -r1.234 *** ChangeLog 9 Jul 2005 15:01:23 -0000 1.233 --- ChangeLog 15 Jul 2005 17:57:54 -0000 1.234 *************** *** 1,2 **** --- 1,7 ---- + 2005-07-15 Baptiste Lepilleur <gai...@fr...> + + * config/bb_enable_doxygen.m4: Rolled back Brad Hards patch as it break + generation of doc/Makefile.am. + 2005-07-09 Baptiste Lepilleur <gai...@fr...> |
From: Baptiste L. <bl...@us...> - 2005-07-15 17:56:14
|
Update of /cvsroot/cppunit/cppunit/config In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20525 Modified Files: bb_enable_doxygen.m4 Log Message: rolled back Brad Hards patch. Cause doc/Makefile.am generation error Index: bb_enable_doxygen.m4 =================================================================== RCS file: /cvsroot/cppunit/cppunit/config/bb_enable_doxygen.m4,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** bb_enable_doxygen.m4 9 Jul 2005 07:49:51 -0000 1.3 --- bb_enable_doxygen.m4 15 Jul 2005 17:56:01 -0000 1.4 *************** *** 1,3 **** ! AC_DEFUN([BB_ENABLE_DOXYGEN] [ AC_ARG_ENABLE(doxygen, [ --enable-doxygen enable documentation generation with doxygen (auto)]) --- 1,3 ---- ! AC_DEFUN(BB_ENABLE_DOXYGEN, [ AC_ARG_ENABLE(doxygen, [ --enable-doxygen enable documentation generation with doxygen (auto)]) |
From: Baptiste L. <bl...@us...> - 2005-07-09 15:01:35
|
Update of /cvsroot/cppunit/cppunit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3705 Modified Files: ChangeLog Log Message: * doc/money.dox: fixed bad usage of CPPUNIT_ASSERT_EQUALS. Index: ChangeLog =================================================================== RCS file: /cvsroot/cppunit/cppunit/ChangeLog,v retrieving revision 1.232 retrieving revision 1.233 diff -C2 -d -r1.232 -r1.233 *** ChangeLog 9 Jul 2005 07:45:34 -0000 1.232 --- ChangeLog 9 Jul 2005 15:01:23 -0000 1.233 *************** *** 13,16 **** --- 13,18 ---- when running ./autogen.sh or aclocal. + * doc/money.dox: fixed bad usage of CPPUNIT_ASSERT_EQUALS. + 2005-07-05 Baptiste Lepilleur <gai...@fr...> |
From: Baptiste L. <bl...@us...> - 2005-07-09 15:01:35
|
Update of /cvsroot/cppunit/cppunit/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3705/doc Modified Files: Money.dox Log Message: * doc/money.dox: fixed bad usage of CPPUNIT_ASSERT_EQUALS. Index: Money.dox =================================================================== RCS file: /cvsroot/cppunit/cppunit/doc/Money.dox,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Money.dox 9 Jul 2005 07:42:47 -0000 1.4 --- Money.dox 9 Jul 2005 15:01:24 -0000 1.5 *************** *** 386,390 **** CPPUNIT_ASSERT( money12FF != money123FF ); // != amount CPPUNIT_ASSERT( money123USD != money123FF ); // != currency ! CPPUNIT_ASSERT( money12USD != money123FF ); // != currency and != amount }\endcode --- 386,390 ---- CPPUNIT_ASSERT( money12FF != money123FF ); // != amount CPPUNIT_ASSERT( money123USD != money123FF ); // != currency ! CPPUNIT_ASSERT( money12USD != money123FF ); // != currency and != amount }\endcode *************** *** 440,445 **** // Check ! CPPUNIT_ASSERT_EQUAL( expectedMoney == money.getAmount() ); // += works ! CPPUNIT_ASSERT( &money == &(money += money12FF) ); // += returns ref. on 'this'. }\endcode --- 440,445 ---- // Check ! CPPUNIT_ASSERT( expectedMoney == money ); // add works ! CPPUNIT_ASSERT( &money == &(money += money12FF) ); // add returns ref. on 'this'. }\endcode *************** *** 538,541 **** --- 538,542 ---- TODO: + - How to use CPPUNIT_ASSERT_EQUALS with Money - Copy constructor/Assignment operator - Introducing fixtures |
From: Baptiste L. <bl...@us...> - 2005-07-09 07:50:16
|
Update of /cvsroot/cppunit/cppunit/config In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3611/config Modified Files: bb_enable_doxygen.m4 Log Message: * config/bb_enable_doxygen.m4: applied Brad Hards patch to remove warning when running ./autogen.sh or aclocal. Index: bb_enable_doxygen.m4 =================================================================== RCS file: /cvsroot/cppunit/cppunit/config/bb_enable_doxygen.m4,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** bb_enable_doxygen.m4 11 Mar 2003 20:34:11 -0000 1.2 --- bb_enable_doxygen.m4 9 Jul 2005 07:49:51 -0000 1.3 *************** *** 1,3 **** ! AC_DEFUN(BB_ENABLE_DOXYGEN, [ AC_ARG_ENABLE(doxygen, [ --enable-doxygen enable documentation generation with doxygen (auto)]) --- 1,3 ---- ! AC_DEFUN([BB_ENABLE_DOXYGEN] [ AC_ARG_ENABLE(doxygen, [ --enable-doxygen enable documentation generation with doxygen (auto)]) |
From: Baptiste L. <bl...@us...> - 2005-07-09 07:45:43
|
Update of /cvsroot/cppunit/cppunit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1447 Modified Files: ChangeLog Log Message: * config/bb_enable_doxygen.m4: applied Brad Hards patch to remove warning when running ./autogen.sh or aclocal. Index: ChangeLog =================================================================== RCS file: /cvsroot/cppunit/cppunit/ChangeLog,v retrieving revision 1.231 retrieving revision 1.232 diff -C2 -d -r1.231 -r1.232 *** ChangeLog 6 Jul 2005 07:18:13 -0000 1.231 --- ChangeLog 9 Jul 2005 07:45:34 -0000 1.232 *************** *** 1,2 **** --- 1,16 ---- + 2005-07-09 Baptiste Lepilleur <gai...@fr...> + + * doc/Money.dox: + * include/cppunit/TestSuite.h: + * include/cppunit/XmlOutputterHook.h: applied Brad Hards patch + that correct miscellaneous doc generation issues (unescaped <>, \...). + + * include/cppunit/plugin/TestPlugIn.h: + * include/cppunit/CompilerOutputter.h: + * doc/CppUnit-win.dox: removed a few documentation generation warnings. + + * config/bb_enable_doxygen.m4: applied Brad Hards patch to remove warning + when running ./autogen.sh or aclocal. + 2005-07-05 Baptiste Lepilleur <gai...@fr...> |
From: Baptiste L. <bl...@us...> - 2005-07-09 07:42:56
|
Update of /cvsroot/cppunit/cppunit/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32107/doc Modified Files: CppUnit-win.dox makedox.bat Money.dox Log Message: * doc/Money.dox: * include/cppunit/TestSuite.h: * include/cppunit/XmlOutputterHook.h: applied Brad Hards patch that correct miscellaneous doc generation issues (unescaped <>, \...). * include/cppunit/plugin/TestPlugIn.h: * include/cppunit/CompilerOutputter.h: * doc/CppUnit-win.dox: removed a few documentation generation warnings. * include/cppunit/plugin/TestPlugIn.h: * include/cppunit/CompilerOutputter.h: * doc/CppUnit-win.dox: removed a few documentation generation warnings. Index: Money.dox =================================================================== RCS file: /cvsroot/cppunit/cppunit/doc/Money.dox,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Money.dox 5 Jul 2005 20:56:09 -0000 1.3 --- Money.dox 9 Jul 2005 07:42:47 -0000 1.4 *************** *** 158,162 **** <tt>\$(TargetPath)</tt> expands into the name of your application: ! Debug\MoneyApp.exe in debug configuration and Release\MoneyApp.exe in release configuration. --- 158,162 ---- <tt>\$(TargetPath)</tt> expands into the name of your application: ! Debug\\MoneyApp.exe in debug configuration and Release\\MoneyApp.exe in release configuration. *************** *** 555,557 **** ! */ \ No newline at end of file --- 555,557 ---- ! */ Index: CppUnit-win.dox =================================================================== RCS file: /cvsroot/cppunit/cppunit/doc/CppUnit-win.dox,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** CppUnit-win.dox 13 Jul 2002 10:33:48 -0000 1.9 --- CppUnit-win.dox 9 Jul 2005 07:42:36 -0000 1.10 *************** *** 761,765 **** CPPUNIT_NS_BEGIN="namespace CppUnit {" \ CPPUNIT_NS_END=} \ ! CPPUNIT_NS=CppUnit # If the MACRO_EXPANSION and EXPAND_PREDEF_ONLY tags are set to YES then --- 761,766 ---- CPPUNIT_NS_BEGIN="namespace CppUnit {" \ CPPUNIT_NS_END=} \ ! CPPUNIT_NS=CppUnit \ ! CPPUNIT_HAVE_WIN32_DLL_LOADER # If the MACRO_EXPANSION and EXPAND_PREDEF_ONLY tags are set to YES then Index: makedox.bat =================================================================== RCS file: /cvsroot/cppunit/cppunit/doc/makedox.bat,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** makedox.bat 18 Jun 2004 11:42:25 -0000 1.8 --- makedox.bat 9 Jul 2005 07:42:38 -0000 1.9 *************** *** 1,3 **** ! SET VERSION=1.10.2 doxygen CppUnit-win.dox xcopy FAQ html /Y --- 1,3 ---- ! SET VERSION=1.10.4 doxygen CppUnit-win.dox xcopy FAQ html /Y |
From: Baptiste L. <bl...@us...> - 2005-07-09 07:42:56
|
Update of /cvsroot/cppunit/cppunit/include/cppunit/plugin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32107/include/cppunit/plugin Modified Files: TestPlugIn.h Log Message: * doc/Money.dox: * include/cppunit/TestSuite.h: * include/cppunit/XmlOutputterHook.h: applied Brad Hards patch that correct miscellaneous doc generation issues (unescaped <>, \...). * include/cppunit/plugin/TestPlugIn.h: * include/cppunit/CompilerOutputter.h: * doc/CppUnit-win.dox: removed a few documentation generation warnings. * include/cppunit/plugin/TestPlugIn.h: * include/cppunit/CompilerOutputter.h: * doc/CppUnit-win.dox: removed a few documentation generation warnings. Index: TestPlugIn.h =================================================================== RCS file: /cvsroot/cppunit/cppunit/include/cppunit/plugin/TestPlugIn.h,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** TestPlugIn.h 17 Jun 2004 18:08:17 -0000 1.13 --- TestPlugIn.h 9 Jul 2005 07:42:47 -0000 1.14 *************** *** 103,107 **** * \code * CppUnitTestPlugIn *CPPUNIT_PLUGIN_EXPORTED_NAME(void); ! * \endif */ #define CPPUNIT_PLUGIN_EXPORTED_NAME cppunitTestPlugIn --- 103,107 ---- * \code * CppUnitTestPlugIn *CPPUNIT_PLUGIN_EXPORTED_NAME(void); ! * \endcode */ #define CPPUNIT_PLUGIN_EXPORTED_NAME cppunitTestPlugIn |
From: Baptiste L. <bl...@us...> - 2005-07-09 07:42:56
|
Update of /cvsroot/cppunit/cppunit/include/cppunit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32107/include/cppunit Modified Files: CompilerOutputter.h TestSuite.h XmlOutputterHook.h Log Message: * doc/Money.dox: * include/cppunit/TestSuite.h: * include/cppunit/XmlOutputterHook.h: applied Brad Hards patch that correct miscellaneous doc generation issues (unescaped <>, \...). * include/cppunit/plugin/TestPlugIn.h: * include/cppunit/CompilerOutputter.h: * doc/CppUnit-win.dox: removed a few documentation generation warnings. * include/cppunit/plugin/TestPlugIn.h: * include/cppunit/CompilerOutputter.h: * doc/CppUnit-win.dox: removed a few documentation generation warnings. Index: CompilerOutputter.h =================================================================== RCS file: /cvsroot/cppunit/cppunit/include/cppunit/CompilerOutputter.h,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** CompilerOutputter.h 25 Jun 2004 11:11:45 -0000 1.15 --- CompilerOutputter.h 9 Jul 2005 07:42:47 -0000 1.16 *************** *** 91,95 **** * VC++ is not detected). If you want your compiler to be automatically supported by * CppUnit, send a mail to the mailing list (preferred), or submit a feature request ! * that indicates how to detect your compiler with the preprocessor (#ifdef...) and * your compiler location format. */ --- 91,95 ---- * VC++ is not detected). If you want your compiler to be automatically supported by * CppUnit, send a mail to the mailing list (preferred), or submit a feature request ! * that indicates how to detect your compiler with the preprocessor (\#ifdef...) and * your compiler location format. */ Index: TestSuite.h =================================================================== RCS file: /cvsroot/cppunit/cppunit/include/cppunit/TestSuite.h,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** TestSuite.h 13 Jul 2002 10:33:50 -0000 1.14 --- TestSuite.h 9 Jul 2005 07:42:47 -0000 1.15 *************** *** 31,35 **** * "testDivideByZero", testDivideByZero)); * \endcode ! * Note that \link TestSuite TestSuites assume lifetime * control for any tests added to them. * --- 31,35 ---- * "testDivideByZero", testDivideByZero)); * \endcode ! * Note that \link TestSuite TestSuites \endlink assume lifetime * control for any tests added to them. * Index: XmlOutputterHook.h =================================================================== RCS file: /cvsroot/cppunit/cppunit/include/cppunit/XmlOutputterHook.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** XmlOutputterHook.h 3 Aug 2002 16:00:46 -0000 1.4 --- XmlOutputterHook.h 9 Jul 2005 07:42:47 -0000 1.5 *************** *** 130,134 **** /*! Called after adding a fail test element. * \param document XML Document being created. ! * \param testElement <FailedTest> element. * \param test Test that failed. * \param failure Test failure data. --- 130,134 ---- /*! Called after adding a fail test element. * \param document XML Document being created. ! * \param testElement \<FailedTest\> element. * \param test Test that failed. * \param failure Test failure data. *************** *** 141,145 **** /*! Called after adding a successful test element. * \param document XML Document being created. ! * \param testElement <Test> element. * \param test Test that was successful. */ --- 141,145 ---- /*! Called after adding a successful test element. * \param document XML Document being created. ! * \param testElement \<Test\> element. * \param test Test that was successful. */ *************** *** 150,154 **** /*! Called after adding the statistic element. * \param document XML Document being created. ! * \param statisticsElement <Statistics> element. */ virtual void statisticsAdded( XmlDocument *document, --- 150,154 ---- /*! Called after adding the statistic element. * \param document XML Document being created. ! * \param statisticsElement \<Statistics\> element. */ virtual void statisticsAdded( XmlDocument *document, |
From: Baptiste L. <bl...@us...> - 2005-07-06 07:18:23
|
Update of /cvsroot/cppunit/cppunit/examples/simple In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17388/examples/simple Modified Files: Makefile.am Log Message: * Examples/simple/Makefile.am: do not install 'simple' programm (patch #1230784). Index: Makefile.am =================================================================== RCS file: /cvsroot/cppunit/cppunit/examples/simple/Makefile.am,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Makefile.am 7 May 2003 20:07:16 -0000 1.5 --- Makefile.am 6 Jul 2005 07:18:14 -0000 1.6 *************** *** 3,7 **** INCLUDES = -I$(top_builddir)/include -I$(top_srcdir)/include ! bin_PROGRAMS=simple simple_SOURCES= ExampleTestCase.cpp Main.cpp ExampleTestCase.h --- 3,7 ---- INCLUDES = -I$(top_builddir)/include -I$(top_srcdir)/include ! noinst_PROGRAMS=simple simple_SOURCES= ExampleTestCase.cpp Main.cpp ExampleTestCase.h |
From: Baptiste L. <bl...@us...> - 2005-07-06 07:18:22
|
Update of /cvsroot/cppunit/cppunit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17388 Modified Files: ChangeLog Log Message: * Examples/simple/Makefile.am: do not install 'simple' programm (patch #1230784). Index: ChangeLog =================================================================== RCS file: /cvsroot/cppunit/cppunit/ChangeLog,v retrieving revision 1.230 retrieving revision 1.231 diff -C2 -d -r1.230 -r1.231 *** ChangeLog 5 Jul 2005 21:17:39 -0000 1.230 --- ChangeLog 6 Jul 2005 07:18:13 -0000 1.231 *************** *** 1,4 **** --- 1,9 ---- 2005-07-05 Baptiste Lepilleur <gai...@fr...> + * Examples/simple/Makefile.am: do not install 'simple' programm + (patch #1230784). + + 2005-07-05 Baptiste Lepilleur <gai...@fr...> + * include/cppunit/TestResultCollector.h * src/cppunit/TestResultCollector.cpp: fixed memory leak |
From: Baptiste L. <bl...@us...> - 2005-07-05 21:17:53
|
Update of /cvsroot/cppunit/cppunit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31780 Modified Files: ChangeLog NEWS Log Message: * include/cppunit/TestResultCollector.h * src/cppunit/TestResultCollector.cpp: fixed memory leak occuring when calling reset(). * src/cppunit/DllMain.cpp: added work-around for mingw compilation for BLENDFUNCTION macro issue when including windows.h. * src/qttestrunner/TestRunnerDlgImpl.cpp: fixed display of multiline messages. * include/cppunit/Portability.h: better integration of compiler output for gcc on Mac OS X with Xcode (contributed by Claus Broch). Index: NEWS =================================================================== RCS file: /cvsroot/cppunit/cppunit/NEWS,v retrieving revision 1.90 retrieving revision 1.91 diff -C2 -d -r1.90 -r1.91 *** NEWS 14 Jun 2005 21:57:22 -0000 1.90 --- NEWS 5 Jul 2005 21:17:39 -0000 1.91 *************** *** 41,44 **** --- 41,47 ---- See XmlOutputter::setStandalone() & XmlDocument::setStandalone(). + - Better integration of compiler output for gcc on Mac OS X with Xcode + (contributed by Claus Broch). + * MFC Test Runner *************** *** 50,53 **** --- 53,60 ---- (patch from bug #1165875 contributed by Pieter Van Dyck). + * QT Test Runner + + - Fixed display of multi-line messages (patch contributed by Karol Szkudlarek). + * Compilation: *************** *** 66,69 **** --- 73,81 ---- AM_PATH_CPPUNIT(1.9.0)" + * Documentation: + + - Corrected many typos in cookbook and money example. Thanks to all + those who helped ! + * Bug Fix: *************** *** 75,78 **** --- 87,92 ---- is not (usually on reference count based implementation). + - TestResultCollector: fixed memory leak occuring when calling reset(). + * Contrib: Index: ChangeLog =================================================================== RCS file: /cvsroot/cppunit/cppunit/ChangeLog,v retrieving revision 1.229 retrieving revision 1.230 diff -C2 -d -r1.229 -r1.230 *** ChangeLog 14 Jun 2005 21:57:22 -0000 1.229 --- ChangeLog 5 Jul 2005 21:17:39 -0000 1.230 *************** *** 1,3 **** ! 2005-06-14 Baptiste Lepilleur <gai...@fr...> * src/msvc6/testrunner/ProgressBar.cpp: applied patch from bug #1165875, (use system color for border instead of hard-coded color). --- 1,18 ---- ! 2005-07-05 Baptiste Lepilleur <gai...@fr...> ! ! * include/cppunit/TestResultCollector.h ! * src/cppunit/TestResultCollector.cpp: fixed memory leak ! occuring when calling reset(). ! ! * src/cppunit/DllMain.cpp: added work-around for mingw compilation ! for BLENDFUNCTION macro issue when including windows.h. ! ! * src/qttestrunner/TestRunnerDlgImpl.cpp: fixed display of multiline ! messages. ! ! * include/cppunit/Portability.h: better integration of compiler output ! for gcc on Mac OS X with Xcode (contributed by Claus Broch). ! ! 2005-06-14 Baptiste Lepilleur <gai...@fr...> * src/msvc6/testrunner/ProgressBar.cpp: applied patch from bug #1165875, (use system color for border instead of hard-coded color). |