summaryrefslogtreecommitdiff
path: root/Makefile.am
Commit message (Collapse)AuthorAgeFilesLines
* package windows project filescppunit-1.13.2Markus Mohrhard2013-11-111-0/+1
|
* Do not fail dist-hook if $(distdir)/lib exists.Steve M. Robbins2007-01-121-1/+1
|
* Makefile.Baptiste Lepilleur2006-07-281-1/+2
| | | | | | Makefile.am: * lib/.keepme: added dummy file to prevent lib/ removal by some unzip clients. Fixed bug #1527877 .
* Cppunit.Baptiste Lepilleur2006-03-041-0/+4
| | | | | | cppunit.pc.in: * configure.in: * Makefile.am: integrated patch from Rober Leight to generate pkg-config.
* Configure.Baptiste Lepilleur2004-02-181-0/+1
| | | | | | | | | configure.in: * makefile.am: * config/ax_cxx_gcc_abi_demangle.m4: * src/cppunit/TypeInfoHelper.cpp: added patch from Neil Ferguson <nferguso@eso.org> to use gcc c++ abi to demangle typeinfo name when available.
* Makefile.Baptiste Lepilleur2003-05-071-1/+2
| | | | | | | | | | | | | | | | | | | | | Makefile.am * configure.in * config/ac_dll.m4 * examples/cppunittest/Makefile.am * examples/hierarchy/Makefile.am * examples/money/Makefile.am * examples/simple/Makefile.am * include/cppunit/config/SelectDllLoader.h * include/cppunit/plugin/TestPlugIn.h * include/cppunit/tools/Algorithm.h * src/DllPlugInTester/Makefile.am * src/cppunit/Makefile.am * src/cppunit/TestDecorator.cpp * src/cppunit/ShlDynamicLibraryManager.cpp * src/cppunit/UnixDynamicLibraryManager.cpp * src/cppunit/Win32DynamicLibraryManager.cpp: applied patch from Abdessattar Sassi <abdesassi@users.sourceforge.net> to add support for plug-in to hp-ux.
* Attempt to fix the makig of lib directory in tar ballBaptiste Lepilleur2002-08-301-0/+1
|
* added automatic creation of lib directory for tar ballBaptiste Lepilleur2002-08-301-1/+0
|
* added automatic creation of lib directory for tar ballBaptiste Lepilleur2002-08-301-1/+1
|
* added automatic creation of lib directory for tar ballBaptiste Lepilleur2002-08-301-0/+1
|
* CodingGuideLines.Baptiste Lepilleur2002-07-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | CodingGuideLines.txt: added. CppUnit's coding guidelines for portability. * include/cppunit/portability/CppUnitStack.h: added. wrapper for std::stack. * include/cppunit/portability/CppUnitSet.h: added. wrapper for std::set. * include/cppunit/ui/text/TestRunner.h: fixed namespace definition for deprecated TestRunner. * include/cppunit/TestAssert.h: * src/cppunit/TestAssert.cpp: removed old deprecated functions that did not use SourceLine. Moved assertEquals() and assertDoubleEquals() into CppUnit namespace. * src/cppunit/TestFactoryRegistry.cpp: use CppUnitMap instead of std::map. * src/DllPlugInTester/CommandLineParser.h: use CppUnitDeque instead std::deque. * examples/cppunittest/*.h: * examples/cppunittest/*.cpp: removed all usage of CppUnitTest namespace. Everything is now in global space. * examples/*/*.h: * examples/*/*.cpp: replaced usage of CppUnit:: with CPPUNIT_NS::. * examples/ClockerPlugIn/ClockerModel.h: use CppUnit STL wrapper instead of STL container.
* Configure.Baptiste Lepilleur2002-04-181-0/+3
| | | | | | | | | configure.in: added some makefile.am * contrib/readme.txt: updated. * contrib/bc5/bc5-makefile.zip: added borland 5.5 makefile. Contributed by project cuppa.
* Makefile.Baptiste Lepilleur2002-04-121-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Makefile.am: added examples/qt to tar ball release. * TODO: heavily updated. * contrib/msvc/CppUnit*.wwtpl: changed base class for unit test to TestFixture. * include/cppunit/Test.h: removed toString() method. Not used by the framework and source of confusions with getName(). Added getChildTestCount() and getChildTestAt(), introducing the composite pattern at top level. Added utility methods findTest() and findTestPath(). * src/cppunit/Test.cpp: added. Implementation of new utility methods. * include/cppunit/TestCase.h: * src/cppunit/TestCase.cpp: inherits TestLeaf. Removed toString(), run(void) and defaultResult(). Removed default constructor. * src/cppunit/TestCase.cpp: * src/cppunit/TestSuite.cpp: fixed some includes that used "" instead of <>. * include/cppunit/TestComposite.h: * src/cppunit/TestComposite.cpp: added. Common implementation of Test for composite tests (TestSuite). * include/cppunit/TestFailure.h: * src/cppunit/TestFailure.cpp: removed toString(). * include/cppunit/TestLeaf.h: * src/cppunit/TestLeaf.cpp: added. Common implementation of Test for single test (TestCase). * include/cppunit/TestListener.h: added TimingListener example to documentation. * include/cppunit/TestPath.h: * src/cppunit/TestPath.cpp: added. List of test traversed to access a test in the test hierarchy. * include/cppunit/TestRunner.h: added. Generic TestRunner. * src/cppunit/TestRunner.cpp: moved to TextTestRunner.cpp. Added new implementation of includecppunit/TestRunner.h. * include/cppunit/TestSuite.h: * src/cppunit/TestSuite.cpp: inherits TestComposite and implements new Test interface. Removed toString(). * src/cppunit/TextTestRunner.cpp: moved from TestRunner.cpp. Implementation of include/cppunit/ui/text/TestRunner.h. * include/cppunit/extensions/RepeatedTest.h: * src/cppunit/RepeatedTest.cpp: removed toString(). * include/cppunit/extensions/TestDecorator.h: inherits TestLeaf. Removed toString() * include/cppunit/XmlOutputter.h: * src/cppunit/XmlOutputter.cpp: * examples/cppunittest/XmlOutputterTest.cpp: * examples/cppunittest/XmlOutputterTest.h: XML outputter now escape node content. Add unit test for that bug (#540944). Added style sheet support. Modified XML structure: failure message as its own element. * src/msvc/testrunner/TestRunnerModel.h: * src/msvc/testrunner/TestRunnerModel.cpp: used Test::findTest() to find a test by name instead of using RTTI. Added toAnsiString() for convertion when compiling as UNICODE. * src/msvc/testrunner/TreeHierarchyDlg.h: * src/msvc/testrunner/TreeHierarchyDlg.cpp: used new composite interface of Test to explorer the test hierarchy instead of RTTI. * examples/cppunittest/TestPathTest.h: * examples/cppunittest/TestPathTest.cpp: added, unit tests for TestPath. * examples/cppunittest/TestCaseTest.h: * examples/cppunittest/TestCaseTest.cpp: added test for TestLeaf. * examples/cppunittest/TestSuiteTest.h: * examples/cppunittest/TestSuiteTest.cpp: added test for TestComposite and new Test interface.
* Makefile.Baptiste Lepilleur2002-04-101-1/+0
| | | | | | Makefile.am: removed directory cppunitui from copy when making the dist. * include/cppunit/ui: added Makefile.am for dist and install.
* No messageBaptiste Lepilleur2002-03-281-0/+1
|
* Makefile.Baptiste Lepilleur2002-03-271-4/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | makefile.am: added src/CppUnitLibraries.dsw, new contribution, and src/qttestrunner. * TODO: updated (doc). * contrib/msvc/AddingUnitTestMethod.dsm: added, submitted by bloodchen@hotmail.com. * constrib/msvc/readme.txt: updated. * include/cppunit/TestAsserter.h: * include/cppunit/SourceLine.h: updated doc. * include/cppunit/TestCaller.h: reindented. updated doc. * include/cppunit/extensions/HelperMacros.h: relaxed constraint on fixture. Fixture base class may be TestFixture instead of TestCase. * include/cppunit/TestCase.h: * src/cppunit/TestCase.h: TestCase inherits TestFixture for setUp() and tearDown() definition. Moved documentation to TestFixture. * include/cppunit/TestFixture.h: updated documentation. * include/cppunit/TestRegistry.h: * src/cppunit/TestRegistry.cpp: Removed. Replaced by TestFactoryRegistry. * include/cppunit/TextTestRunner.h: * src/cppunit/TextTestRunner.cpp: made printing progress using a TextTestProgressListener optional. * examples\cppunittest\ExceptionTest.h: * examples\cppunittest\HelperMacrosTest.h: * examples\cppunittest\HelperMacrosTest.cpp: * examples\cppunittest\NotEqualException.h: * examples\cppunittest\OrthodoxTest.h: * examples\cppunittest\RepeatedTest.h: * examples\cppunittest\TestAssertTest.h: * examples\cppunittest\TestCallerTest.h: * examples\cppunittest\TestDecoratorTest.h: * examples\cppunittest\TestFailureTest.h: * examples\cppunittest\TestResultCollectorTest.h: * examples\cppunittest\TestResultTest.h: * examples\cppunittest\TestSetUpTest.h: * examples\cppunittest\TestSuiteTest.h: * examples\cppunittest\XmlOutputterTest.h: * examples\cppunittest\XmlOutputterTest.cpp: * examples\cppunittest\XmlUniformizerTest.h: * examples\cppunittest\XmlUniformizerTest.cpp: changed base class for fixture from TestCase to TestFixture. * examples\hierarchy\BoardGameTest.h: * examples\hierarchy\ChessTest.h: * examples\hierarchy\main.cpp: updated to use HelperMacros for correct fixture instantiation (the ChessBoard::testReset test case was using BoardGame fixture instance instead of ChessBoard).
* Distribute contrib/msvc/*.Steve M. Robbins2001-09-301-0/+6
| | | | Add const qualifier to countTestCases() and toString() of RepeatedTest.
* Documentation tweaks. Add config-mac.hSteve M. Robbins2001-09-301-5/+6
|
* Final touch-ups for release 1.6.0.Steve M. Robbins2001-09-241-3/+3
|
* Correct rule to change line endings for INSTALL-WIN32.txt.Steve M. Robbins2001-09-211-1/+1
|
* Improved strstream detection to use header <strstream>, if available.Steve M. Robbins2001-09-201-3/+1
|
* *** empty log message ***Steve M. Robbins2001-09-191-0/+1
|
* Use iso date for snapshot.Steve M. Robbins2001-09-191-2/+5
|
* Changes in response to bug reports.Steve M. Robbins2001-09-191-2/+3
|
* Makefile.Baptiste Lepilleur2001-09-171-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Makefile.am: Added INSTALL-WIN32.txt to EXTRA_DIST. * INSTALL-WIN32.txt: added, short documentation for CppUnit and VC++. * include/cppunit/extensions/HelperMacros.h: bug #448363, removed an extraneous ';' at the end of CPPUNIT_TEST_SUITE_END macro. * examples/cppunittest/TestCallerTest.cpp: bug #448332, fixed memory leaks. * src/msvc6/testrunner/TestRunnerDlg.h: * src/msvc6/testpluginrunner/TestPlugInRunnerDlg.h: * src/msvc6/testpluginrunner/TestPlugInRunnerDlg.cpp: change to define IDD to a dummy value when subclassing the dialog. * src/cppunit/cppunit.dsp: * src/msvc6/testrunner/TestRunner.dsp: * src/msvc6/testpluginrunner/TestPlugInRunner.dsp: * examples/cppunitttest/CppUnitTestMain.dsp: * examples/hierarchy.dsp: * examples/msvc6/TestPlugIn/TestPlugIn.dsp: * examples/msvc6/HostApp/HostApp.dsp: all configurations can be compiled. * src/msvc6/testpluginrunner/TestPlugInRunner.dsw: added dependency to cppunit.dsp and TestRunner.dsp.
* Build changes. Distribute all m4 files.Steve M. Robbins2001-08-071-8/+13
|
* Merged fixes for distcheck target, contributed by Steve M. Robbins ↵Bastiaan Bakker2001-05-171-3/+3
| | | | <steve@nyongwa.montreal.qc.ca>.
* Added debian packaging support by Christian Leutloff <leutloff@debian.org>.Bastiaan Bakker2001-05-161-0/+4
| | | | | Use 'make debian' to build. Since Christians files were for 1.5.4, they problably need to be resynced.
* Convert *.ds? files to CRLF endings in dist-hook.Bastiaan Bakker2001-05-061-0/+1
|
* Merged from Baptiste Lepilleurs patch. Missed at first try.Bastiaan Bakker2001-04-281-0/+2
|
* Moved files in subdir cppunit to src/cppunit.Bastiaan Bakker2001-04-281-3/+3
|
* Fixed dist-hook target.Bastiaan Bakker2001-04-281-1/+1
|
* Merged msvc6 specific TestRunner and example adapted from Michael FeathersBastiaan Bakker2001-04-281-0/+4
| | | | version by Baptiste Lepilleur.
* Set CONFIG_AUX_DIR to config and moved corresponding files from . to config.Bastiaan Bakker2001-04-151-3/+3
|
* Moved public header files from cppunit dir to include/cppunit, to separate ↵Bastiaan Bakker2001-04-141-3/+3
| | | | them from internal header files like estring.h.
* Added support for building RPMs using 'make rpm'.Bastiaan Bakker2001-04-131-9/+10
|
* Document generation is now autoconfed. (copied from log4cpp autoconf/automake).Bastiaan Bakker2001-04-131-2/+6
| | | | | Added doc subdir to dist. Upped version number to 1.5.3.
* Added examples directory to distribution.Eric Sommerlade2000-10-111-1/+2
|
* Initial check in.Eric Sommerlade2000-10-051-0/+32