From: <mk...@us...> - 2003-10-25 13:32:46
|
Update of /cvsroot/csp/APPLICATIONS/SimData In directory sc8-pr-cvs1:/tmp/cvs-serv4783 Modified Files: CHANGES.current Makefile Log Message: Index: CHANGES.current =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/SimData/CHANGES.current,v retrieving revision 1.89 retrieving revision 1.90 diff -C2 -d -r1.89 -r1.90 *** CHANGES.current 24 Oct 2003 06:44:12 -0000 1.89 --- CHANGES.current 24 Oct 2003 15:45:43 -0000 1.90 *************** *** 1,4 **** --- 1,15 ---- Version 0.4.0 (in progress) =========================== + 2003-10-24: onsight + * Moved some inline set() methods out of TypeAdapter.h to avoid + including all the data type headers. Code using SimData that + implicitly relies on these data type headers will now need to + exclicitly include the required types. + + * Added a C++ testing framework under SimData/Tests. Any file + named test_*.cpp is treated as a test, and can be built and + run from a toplevel 'make tests'. Failed tests should exit + with a non-zero status code. + 2003-10-23: onsight * Separated Singleton class into Singleton.h (was InterfaceRegistry.h). Index: Makefile =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/SimData/Makefile,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** Makefile 19 Oct 2003 23:53:55 -0000 1.21 --- Makefile 24 Oct 2003 15:45:43 -0000 1.22 *************** *** 30,31 **** --- 30,37 ---- @python setup.py check_version @python setup.py make_install --verbose + + tests: + @$(MAKE) --no-print-directory -C SimData/Tests all + + tests-clean: + @$(MAKE) --no-print-directory -C SimData/Tests clean |