[Cppunit-cvs] cppunit2/doc cppunit2todo.txt,1.2,1.3 opentesttodo.txt,1.1,1.2
Brought to you by:
blep
From: Baptiste L. <bl...@us...> - 2005-09-06 07:14:57
|
Update of /cvsroot/cppunit/cppunit2/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13773/doc Modified Files: cppunit2todo.txt opentesttodo.txt Log Message: * added CPPTL_ARRAY_SIZE * added typedef LargestInt and LargestUnsignedInt Index: opentesttodo.txt =================================================================== RCS file: /cvsroot/cppunit/cppunit2/doc/opentesttodo.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** opentesttodo.txt 15 Nov 2004 20:41:12 -0000 1.1 --- opentesttodo.txt 6 Sep 2005 07:14:49 -0000 1.2 *************** *** 108,112 **** * optionally select test to run from the command-line ! Status: partially implemented in opentest/texttestdriver.h. Test monitoring --- 108,114 ---- * optionally select test to run from the command-line ! *Status*: ! ! * 2004/11/22: partially implemented in opentest/texttestdriver.h. Test monitoring Index: cppunit2todo.txt =================================================================== RCS file: /cvsroot/cppunit/cppunit2/doc/cppunit2todo.txt,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** cppunit2todo.txt 16 Nov 2004 08:47:29 -0000 1.2 --- cppunit2todo.txt 6 Sep 2005 07:14:49 -0000 1.3 *************** *** 42,45 **** --- 42,47 ---- * testrunresult.h + *Status*: done (2004/11/22) + What need to be changed? ------------------------ *************** *** 50,53 **** --- 52,57 ---- * TestResult should be integrated to TestRunner. + *Status*: done (2004/11/22) + Features to add =============== *************** *** 63,66 **** --- 67,73 ---- Should also find a way to integrate this with test fixture declaration. + *Status*: done (2004/11/22). A warning doc has been written. Update of + info after declaration will simply not be taken in account. + Test configuration information ------------------------------ *************** *** 82,85 **** --- 89,94 ---- actual values, assertion location... + *Status*: done (2004/11/22). + Logging stream -------------- *************** *** 96,99 **** --- 105,115 ---- strategy is used (one log per thread, one log for all thread...). + *Status*: + + * 2004/11/22: Study show that it can not be done. std::basic_stream are + not thread-safe. An alternative solution could be to embed the stream in + TestInfoData and returning it from a function. Further study are required + to see how this would work with context switch. + Checking assertions vs. aborting assertions ------------------------------------------- *************** *** 112,115 **** --- 128,136 ---- be replaced by direct update of the current assertion `Properties`. + *Status*: + + * 2004/11/22: framework has been modified to support checking assertions. Macro need to + be added to correctly set the assertion mode (CPPUT_CHECK_xxx). + Test plug-in wrapper application -------------------------------- |