Blame ChangeLog

Packit 0b5880
IT IS NOT NECESSARY TO UPDATE THIS FILE.
Packit 0b5880
Packit 0b5880
PLEASE MAKE SURE TO LEAVE A GOOD SVN COMMIT MESSAGE.
Packit 0b5880
Packit 0b5880
2010-04-08  Micah Cowan  <micah@cowan.name>
Packit 0b5880
Packit 0b5880
	* configure.ac: Determine at configure time, how many
Packit 0b5880
	backslashes are needed in the second argument to Awk's built-in
Packit 0b5880
	"gsub" function in order to generate two backslashes.
Packit 0b5880
Packit 0b5880
	* checkmk/checkmk.in: Replaced POSIX character-classes
Packit 0b5880
	with (roughly) equivalent character groups from pre-POSIX
Packit 0b5880
	syntax, to support pre-POSIX awk implementations.
Packit 0b5880
	(string_encode): Use configure-substituted AWK_GSUB_DBL_BSLASH
Packit 0b5880
	to determine how to substitute a doubled backslash in gsub.
Packit 0b5880
Packit 0b5880
2010-04-03  Micah Cowan  <micah@cowan.name>
Packit 0b5880
Packit 0b5880
	* checkmk/*: Added Awk program "checkmk", for eliminating
Packit 0b5880
	boilerplate work when writing unit test modules. Includes
Packit 0b5880
	documentation and tests.
Packit 0b5880
Packit 0b5880
	* Makefile.am (SUBDIRS): Added checkmk.
Packit 0b5880
Packit 0b5880
	* configure.ac: Added extra awk-detection logic for checkmk.
Packit 0b5880
Packit 0b5880
	* NEWS: Updated with news about checkmk.
Packit 0b5880
Packit 0b5880
	* AUTHORS (Patches): Added myself.
Packit 0b5880
Packit 0b5880
2010-02-17  Jose E. Marchesi  <jemarch@gnu.org>
Packit 0b5880
Packit 0b5880
	* tests/check_check_selective.c (make_selective_suite): New
Packit 0b5880
	function.
Packit 0b5880
	(selective_setup): New function.
Packit 0b5880
	(selective_teardown): New function.
Packit 0b5880
	New tests 'test_srunner_run_run_all, 'test_srunner_run_suite',
Packit 0b5880
	'test_srunner_run_no_suite', test_srunner_run_tcase',
Packit 0b5880
	'test_srunner_no_tcase', 'test_srunner_suite_tcase',
Packit 0b5880
	'test_srunner_suite_no_tcase', 'test_srunner_run_suite_env',
Packit 0b5880
	'test_srunner_run_no_suite_env', 'test_srunner_run_tcase_env',
Packit 0b5880
	'test_srunner_run_no_tcase_env', 'test_srunner_suite_tcase_env',
Packit 0b5880
	'test_srunner_suite_no_tcase_env'.
Packit 0b5880
Packit 0b5880
	* tests/Makefile.am (check_check_SOURCES): Add
Packit 0b5880
	'check_check_selective.c'.
Packit 0b5880
Packit 0b5880
	* tests/check_check_selective.c: New file.
Packit 0b5880
Packit 0b5880
	* tests/check_check_main.c (main): Add the selective_suite to the
Packit 0b5880
	master suite.
Packit 0b5880
Packit 0b5880
2010-02-10  Jose E. Marchesi  <jemarch@gnu.org>
Packit 0b5880
Packit 0b5880
	* doc/check.texi (SRunner Output): Document 'srunner_run' and the
Packit 0b5880
	usage of CK_RUN_CASE and CK_RUN_SUITE environment variables.
Packit 0b5880
Packit 0b5880
	* src/check_run.c (srunner_run): Use values of environment
Packit 0b5880
	variables CK_RUN_CASE and CK_RUN_SUITE.
Packit 0b5880
Packit 0b5880
2010-02-02  Jose E. Marchesi  <jemarch@gnu.org>
Packit 0b5880
Packit 0b5880
	* src/check.c (suite_tcase): New function that determines whether
Packit 0b5880
	a a given test suite contains a test case named after a given
Packit 0b5880
	string.
Packit 0b5880
Packit 0b5880
	* src/check_run.c (srunner_run): New function, renamed from
Packit 0b5880
	'srunner_run_all', allowing selective running of an specific test
Packit 0b5880
	suite and/or test case.
Packit 0b5880
	(srunner_run_all): New function, invoking srunner_run internally
Packit 0b5880
	to provide backwards compatibility.
Packit 0b5880
Packit 0b5880
	* src/check.h.in: Add prototype for srunner_run.
Packit 0b5880
Packit 0b5880
2005-12-16 hugo303
Packit 0b5880
Packit 0b5880
	* src/check_pack.c: Fixed buggy eprintf string.
Packit 0b5880
Packit 0b5880
2005-10-31 hugo303
Packit 0b5880
Packit 0b5880
	* src/check_list.c, tests/check_list.c, tests/check_check_fixture.c:
Packit 0b5880
	Fixed sourceforge bug #1327225, Two teardown checked fixtures
Packit 0b5880
	segfaults. Originated in a pointer arithmetic bug in a memmove()
Packit 0b5880
	call in list_add_front() in src/check_list.c.
Packit 0b5880
Packit 0b5880
2005-09-30 hugo303
Packit 0b5880
Packit 0b5880
	* doc/tutorial.sgml: Updated with a section about looping tests.
Packit 0b5880
Packit 0b5880
2005-09-30 hugo303
Packit 0b5880
Packit 0b5880
	* src/check.c, src/check.h.in, src/check_impl.h, src/check_print.c,
Packit 0b5880
	src/check_run.c, src/check_str.c, tests/Makefile.am,
Packit 0b5880
	tests/check_check_fixture.c, tests/check_check_master.c,
Packit 0b5880
	tests/ex_xml_output.c, tests/test_log_output.sh, tests/test_output.sh,
Packit 0b5880
	tests/test_xml_output.sh:
Packit 0b5880
	
Packit 0b5880
	Added a new kind of test, looping tests, which are called with a new
Packit 0b5880
	context for each loop iteration. This makes them ideal for table based
Packit 0b5880
	tests. Previously, with the loop in the test itself, only the first
Packit 0b5880
	error was caught and then the test would exit. Now all errors are
Packit 0b5880
	shown at once which should help in debugging.
Packit 0b5880
Packit 0b5880
2005-09-15 hugo303
Packit 0b5880
Packit 0b5880
	* configure.in, tests/check_check_sub.c, tests/check_check.h,
Packit 0b5880
	tests/check_check_master.c, tests/Makefile.am:
Packit 0b5880
	Added possibility to turn off timeout tests through configure option
Packit 0b5880
	--enable-timeout-tests=no
Packit 0b5880
Packit 0b5880
2005-09-15 hugo303
Packit 0b5880
Packit 0b5880
	* src/Makefile.am: Improved coverage analysis by running all tests
Packit 0b5880
	before compiling result. Added gcc3.3 coverage bug workaround.
Packit 0b5880
		
Packit 0b5880
2005-09-15 hugo303
Packit 0b5880
Packit 0b5880
	* tests/check_check_sub.c, tests/check_check_master.c:
Packit 0b5880
	Added testing of timeout set through environment variable.
Packit 0b5880
Packit 0b5880
2005-09-07 hugo303
Packit 0b5880
Packit 0b5880
	*configure.in, src/Makefile.am, tests/Makefile.am: Added gcov/lcov 
Packit 0b5880
	support. Enable with 'autogen.sh --enable-gcov'.
Packit 0b5880
	Run with 'cd src && make lcov'.
Packit 0b5880
Packit 0b5880
2005-08-30 hugo303
Packit 0b5880
Packit 0b5880
	* debian/README.Debian, debian/compat, debian/docs,
Packit 0b5880
	debian/example_makefile, debian/examples, debian/watch:
Packit 0b5880
	Added new debian files, missed in the checkin of the debian patch.
Packit 0b5880
	
Packit 0b5880
2005-08-30 hugo303
Packit 0b5880
Packit 0b5880
	* NEWS: Checked in forgotten updated NEWS file.
Packit 0b5880
Packit 0b5880
2005-08-22 hugo303
Packit 0b5880
Packit 0b5880
	* debian/changelog, debian/check.doc-base.tut, debian/check.docs,
Packit 0b5880
	debian/check.postinst.debhelper, debian/check.prerm.debhelper,
Packit 0b5880
	debian/control, debian/copyright, debian/dirs, debian/rules:
Packit 0b5880
Packit 0b5880
	Applied patch for debian files received from check debian
Packit 0b5880
	maintainer Robert Lemmen.
Packit 0b5880
Packit 0b5880
2005-08-22 hugo303
Packit 0b5880
Packit 0b5880
	* src/check.h.in: Added include of stddef.h for NULL definition
Packit 0b5880
Packit 0b5880
2005-08-22 hugo303
Packit 0b5880
Packit 0b5880
	* doc/tutorial.sgml: Fixed sourceforge bug #1216502
Packit 0b5880
Packit 0b5880
2005-07-19 hugo303
Packit 0b5880
Packit 0b5880
	* tests/check_check_master.c, tests/check_check_msg.c,
Packit 0b5880
	tests/check_check_sub.c, src/check.c, src/check.h.in,
Packit 0b5880
	src/check_msg.c, src/check_msg.h, src/check_run.c:
Packit 0b5880
	
Packit 0b5880
	Refactored messaging to use the new tmpfile() method all the way,
Packit 0b5880
	removing the message keys, pipes, pipe entries and pipe list. This
Packit 0b5880
	makes the messaging work with forking tests, and also with threading
Packit 0b5880
	tests on linux 2.4 (on 2.6 it already worked). Added check_fork and
Packit 0b5880
	check_waitpid_and_exit to be used for forking tests.
Packit 0b5880
Packit 0b5880
2005-05-26 hugo303
Packit 0b5880
Packit 0b5880
	* debian/Makefile.am: Removed 'files' file from DIST
Packit 0b5880
Packit 0b5880
2005-03-29 hugo303
Packit 0b5880
Packit 0b5880
	* src/check.h.in: Fixed compatibility with gcc 2.95.3 according
Packit 0b5880
	to sourceforge patch #1161654.
Packit 0b5880
Packit 0b5880
2005-03-02 hugo303
Packit 0b5880
Packit 0b5880
	* src/check.h.in: Added define for NULL if needed.
Packit 0b5880
Packit 0b5880
2005-03-01 hugo303
Packit 0b5880
Packit 0b5880
	* src/check_run.c, tests/check_check_master.c: Changed timeout
Packit 0b5880
	error message according to sourceforge feature request #1121452.
Packit 0b5880
Packit 0b5880
2005-02-28 hugo303
Packit 0b5880
Packit 0b5880
	* debian/files: Removed this auto generated file.
Packit 0b5880
Packit 0b5880
2005-02-28 hugo303
Packit 0b5880
Packit 0b5880
	* rpm/check.spec.in: Added patch for x86_64 arch (fc3).
Packit 0b5880
Packit 0b5880
2005-02-28 hugo303
Packit 0b5880
Packit 0b5880
	* tests/ex_xml_output.c, tests/ex_log_output.c, tests/ex_output.c,
Packit 0b5880
	  src/check_log.c:
Packit 0b5880
	  Fixed memory leaks.
Packit 0b5880
Packit 0b5880
2005-01-04 hugo303
Packit 0b5880
Packit 0b5880
	* check.m4, config.h.in, configure.in, src/check_pack.c: Fixed
Packit 0b5880
	quoting and added configure test for stdint.h.
Packit 0b5880
Packit 0b5880
2005-01-04 hugo303
Packit 0b5880
Packit 0b5880
        * tests/check_check_master.c: Made failure messages more helpful.
Packit 0b5880
Packit 0b5880
2004-11-12 hugo303
Packit 0b5880
Packit 0b5880
	* debian/check.dirs, debian/control, debian/rules: Fixed building
Packit 0b5880
	with gcc3. Removed empty money dir from docs.
Packit 0b5880
Packit 0b5880
2004-11-10 hugo303
Packit 0b5880
Packit 0b5880
	* Makefile.am, rpm/check.spec.in, rpm/Makefile.am: Fixed so
Packit 0b5880
	distributions build without trouble.
Packit 0b5880
Packit 0b5880
2004-11-09 hugo303
Packit 0b5880
Packit 0b5880
	* src/check_run.c, tests/check_check_master.c: Use strsignal
Packit 0b5880
	to print describing text for signals.
Packit 0b5880
Packit 0b5880
2004-11-09 hugo303
Packit 0b5880
Packit 0b5880
	* doc/tutorial.sgml: Documented signals handling and timeouts.
Packit 0b5880
Packit 0b5880
2004-11-09 hugo303
Packit 0b5880
Packit 0b5880
	* tests/check_check_master.c src/check.h.in:
Packit 0b5880
	Changed failure message for fail_if.
Packit 0b5880
Packit 0b5880
2004-11-09 hugo303
Packit 0b5880
Packit 0b5880
	* src/check.c, src/check.h.in, src/check_impl.h, src/check_run.c,
Packit 0b5880
	tests/check_check_master.c, tests/check_check_sub.c:
Packit 0b5880
	Added support for timeouts on tests, enabling detection of
Packit 0b5880
	eternal loops as errors.
Packit 0b5880
Packit 0b5880
2004-11-08 hugo303
Packit 0b5880
Packit 0b5880
	* src/check.c, src/check.h.in, src/check_impl.h, src/check_run.c,
Packit 0b5880
	tests/check_check_master.c, tests/check_check_sub.c:
Packit 0b5880
	Added support for testing on expected signals. Implementation
Packit 0b5880
	courtesy of Lucas Di Pentima and Cesar Ballardini. Also cleaned
Packit 0b5880
	up the test verification to simplify merging of new tests.
Packit 0b5880
Packit 0b5880
2004-11-04 hugo303
Packit 0b5880
Packit 0b5880
        * src/check.c, src/check_list.c, src/check_list.h, src/check_log.c,
Packit 0b5880
	src/check_msg.c, tests/check_list.c:
Packit 0b5880
	Changed name on function list_create to check_list_create to avoid
Packit 0b5880
	name clash.
Packit 0b5880
Packit 0b5880
2004-11-04 hugo303
Packit 0b5880
Packit 0b5880
	* src/check.c, src/check.h.in, tests/check_check_master.c,
Packit 0b5880
	tests/check_check_sub.c: Applied ANSI C99 patch (#1047014)
Packit 0b5880
Packit 0b5880
2004-08-20 hugo303
Packit 0b5880
Packit 0b5880
	* doc/tutorial.sgml: Updated with new features.
Packit 0b5880
Packit 0b5880
2004-08-18 hugo303
Packit 0b5880
Packit 0b5880
	* src/check.c, src/check.h.in, src/check_impl.h, src/check_log.c,
Packit 0b5880
	src/check_log.h, src/check_print.c, src/check_print.h,
Packit 0b5880
	src/check_run.c, tests/Makefile.am, tests/check_check_log.c,
Packit 0b5880
	tests/ex_xml_output.c, tests/test_xml_output.sh:
Packit 0b5880
	Added support for XML output of the test results, courtesy of
Packit 0b5880
	Frederic Peters.
Packit 0b5880
Packit 0b5880
2004-08-18 hugo303
Packit 0b5880
Packit 0b5880
	* src/check_run.c, tests/check_check_fixture.c: Fixed setup bug
Packit 0b5880
	from forum, failure in setup did not abort test in nofork mode.
Packit 0b5880
	Added test cases for bug.
Packit 0b5880
Packit 0b5880
2004-08-17 hugo303
Packit 0b5880
Packit 0b5880
	* src/check_pack.c: Use stdint.h for specific sized type.
Packit 0b5880
	* src/check.c, src/check.h.in, tests/check_check_master.c,
Packit 0b5880
	tests/check_check_sub.c, ChangeLog
Packit 0b5880
	Applied varargs patch (#933411) and added test cases.
Packit 0b5880
	* src/check.h.in tests/check_check_master.c tests/check_check_sub.c:
Packit 0b5880
	Applied fail_if (#709167) patch.
Packit 0b5880
Packit 0b5880
2004-08-16 hugo303
Packit 0b5880
Packit 0b5880
	* doc/tutorial.sgml: Applied 'newbies' patch #995028 for autoconf doc.
Packit 0b5880
	* rpm/check.spec.in: Applied doc patch #995028 from Bill Barnard.
Packit 0b5880
Packit 0b5880
2004-06-04 hugo303
Packit 0b5880
Packit 0b5880
	* tests/: test_log_output.sh test_output.sh: Fixed portability
Packit 0b5880
	problem by changing == to =.
Packit 0b5880
Packit 0b5880
2004-05-26 hugo303
Packit 0b5880
Packit 0b5880
	* rpm/check.spec.in: Changed copyright.
Packit 0b5880
Packit 0b5880
2004-05-25 hugo303
Packit 0b5880
Packit 0b5880
        * src/check_run.c: Applied patch 796705. Replacing _exit with exit.
Packit 0b5880
Packit 0b5880
2004-05-25 hugo303
Packit 0b5880
Packit 0b5880
	* src/check.c tests/check_check_master.c tests/check_check_sub.c:
Packit 0b5880
	Applied patch for bug 793671.
Packit 0b5880
Packit 0b5880
2004-05-17 10:44 hugo303
Packit 0b5880
Packit 0b5880
	* Released 0.9.0. See NEWS file for changes.
Packit 0b5880
Packit 0b5880
2002-10-16 13:47  neo23
Packit 0b5880
Packit 0b5880
	* AUTHORS, ChangeLog, configure.in: Bumped version number to 0.8.4.
Packit 0b5880
	Updated AUTHORS and ChangeLog.
Packit 0b5880
Packit 0b5880
2002-10-16 13:39  neo23
Packit 0b5880
Packit 0b5880
	* src/check_msg.c, tests/check_check_msg.c: Applied a patch from
Packit 0b5880
	Rick Poyner that changes the pipe used for IPC to use a temporary
Packit 0b5880
	file instead of stdin/stdout. This fixes the long-standing problem
Packit 0b5880
	that the pipe used to fill up when too many fail_unless() were
Packit 0b5880
	used. (#482012).
Packit 0b5880
Packit 0b5880
2002-10-09 18:57  neo23
Packit 0b5880
Packit 0b5880
	* src/check.h.in: Applied a patch from Rick Poyner that fixes a
Packit 0b5880
	typo which broke check for C++ compilers (bug #601397).
Packit 0b5880
Packit 0b5880
2002-08-16 19:41  neo23
Packit 0b5880
Packit 0b5880
	* src/: check.c, check_msg.c, check_msg.h, check_pack.c,
Packit 0b5880
	check_pack.h: Applied a patch from Dietmar Petras <dpetras@gmx.de>
Packit 0b5880
	that plugs some memory leaks.
Packit 0b5880
Packit 0b5880
2002-07-10 04:37  neo23
Packit 0b5880
Packit 0b5880
	* .cvsignore, autogen.sh: Call aclocal from autogen.sh.
Packit 0b5880
Packit 0b5880
2002-07-10 04:32  neo23
Packit 0b5880
Packit 0b5880
	* aclocal.m4, depcomp, install-sh, missing, mkinstalldirs: Removed
Packit 0b5880
	files generated by automake.
Packit 0b5880
Packit 0b5880
2002-06-16 14:25  neo23
Packit 0b5880
Packit 0b5880
	* debian/changelog: applied patch from Arien Malec to fix build of
Packit 0b5880
	Debian packages
Packit 0b5880
Packit 0b5880
2002-05-24 17:04  neo23
Packit 0b5880
Packit 0b5880
	* ChangeLog: Made 0.8.3 Release.
Packit 0b5880
Packit 0b5880
2002-05-24 17:00  neo23
Packit 0b5880
Packit 0b5880
	* NEWS, doc/tutorial.lyx, rpm/check.spec.in: Added check.m4 to the
Packit 0b5880
	spec file. Updated NEWS. Updated the date of the tutorial.
Packit 0b5880
Packit 0b5880
2002-05-24 16:35  neo23
Packit 0b5880
Packit 0b5880
	* debian/: check.dirs, check.files, control: Added check.m4 to
Packit 0b5880
	debian rules. Changed the maintainer entry.
Packit 0b5880
Packit 0b5880
2002-05-23 17:08  neo23
Packit 0b5880
Packit 0b5880
	* doc/tutorial.lyx: Mention that EXIT_SUCCESS and EXIT_FAILURE are
Packit 0b5880
	defined in stdlib.h.  Suggested by Russell Reed in bug #547129.
Packit 0b5880
Packit 0b5880
2002-05-10 14:01  neo23
Packit 0b5880
Packit 0b5880
	* src/check_msg.c: Declared local functions static (based on a
Packit 0b5880
	patch from Gilgamesh Nootebos).
Packit 0b5880
Packit 0b5880
2002-05-03 13:58  neo23
Packit 0b5880
Packit 0b5880
	* src/Makefile.am, src/check.c, src/check_error.c,
Packit 0b5880
	src/check_list.c, src/check_list.h, src/check_log.c,
Packit 0b5880
	src/check_msg.c, src/check_pack.c, src/check_print.c,
Packit 0b5880
	src/check_run.c, src/check_str.c, src/list.c, src/list.h,
Packit 0b5880
	tests/check_list.c: Renamed list.[ch] to check_list.[ch] for
Packit 0b5880
	consistency.  Include config.h from all over the place, cleaned up
Packit 0b5880
	includes.
Packit 0b5880
Packit 0b5880
2002-05-02 10:34  neo23
Packit 0b5880
Packit 0b5880
	* src/check_pack.c, tests/check_check_log.c: Removed compiler
Packit 0b5880
	warnings mentioned in bug #547126.
Packit 0b5880
Packit 0b5880
2002-05-02 10:27  neo23
Packit 0b5880
Packit 0b5880
	* src/check_print.c, tests/check_check_msg.c: Don't include
Packit 0b5880
	"error.h" (bug #546175 small cygwin portability problem).
Packit 0b5880
Packit 0b5880
2002-04-16 19:33  neo23
Packit 0b5880
Packit 0b5880
	* doc/tutorial.lyx: Changed date to that of the latest release. 
Packit 0b5880
	Added a name to an internal reference so that we get a working link
Packit 0b5880
	in the generated HTML.
Packit 0b5880
Packit 0b5880
2002-04-15 18:47  neo23
Packit 0b5880
Packit 0b5880
	* check.m4, configure.in: Fixed check.m4 so that --without-check is
Packit 0b5880
	a valid option to disable check.  Bumped version number to 0.8.3.
Packit 0b5880
Packit 0b5880
2002-04-15 12:58  neo23
Packit 0b5880
Packit 0b5880
	* ChangeLog: Updated ChangeLog.
Packit 0b5880
Packit 0b5880
2002-04-15 12:57  neo23
Packit 0b5880
Packit 0b5880
	* NEWS, README: Made 0.8.2 Release.
Packit 0b5880
Packit 0b5880
2002-04-14 18:59  neo23
Packit 0b5880
Packit 0b5880
	* src/check_msg.c: Applied a patch from Arien that makes the pipe
Packit 0b5880
	nonblocking. This doesn't solve #482012 but makes it more obvious
Packit 0b5880
	what is going wrong if the pipe fills up.
Packit 0b5880
Packit 0b5880
2002-04-12 12:50  neo23
Packit 0b5880
Packit 0b5880
	* doc/tutorial.lyx: Use #include rather than #import (bug #484564).
Packit 0b5880
Packit 0b5880
2002-04-12 12:34  neo23
Packit 0b5880
Packit 0b5880
	* ChangeLog: Updated ChangeLog.
Packit 0b5880
Packit 0b5880
2002-04-12 12:33  neo23
Packit 0b5880
Packit 0b5880
	* AUTHORS, doc/tutorial.lyx: Document the fact that you can now use
Packit 0b5880
	NULL as msg argument for fail_unless().
Packit 0b5880
Packit 0b5880
2002-04-12 11:54  neo23
Packit 0b5880
Packit 0b5880
	* config.h.in, configure.in, src/Makefile.am, src/check.c,
Packit 0b5880
	src/check_impl.h, src/check_magic.h, src/check_msg.c,
Packit 0b5880
	src/check_pack.c, src/check_pack.h, src/check_run.c,
Packit 0b5880
	src/check_str.c, src/check_str.h, tests/Makefile.am,
Packit 0b5880
	tests/check_check_fixture.c, tests/check_check_master.c,
Packit 0b5880
	tests/check_check_msg.c, tests/check_check_pack.c: Removed
Packit 0b5880
	limitations on line number, message and buffer sizes (bug #478233)
Packit 0b5880
	by changing the way we send integers over the pipe. Instead of
Packit 0b5880
	strings, integers are now send as 4 bytes.  This allows the pack
Packit 0b5880
	routine to easily calculate the message size so that we can
Packit 0b5880
	allocate the needed buffer there.  Made a union out of the
Packit 0b5880
	different Msg structs to clean up the internal API. Also introduced
Packit 0b5880
	the internal function ck_strdup_printf(), a simple wrapper around
Packit 0b5880
	sprintf() that allocates enough space to hold the resulting string.
Packit 0b5880
Packit 0b5880
2002-04-10 13:11  neo23
Packit 0b5880
Packit 0b5880
	* AUTHORS, NEWS, configure.in, src/check.c, src/check.h.in,
Packit 0b5880
	src/check_error.c, src/check_error.h, src/check_impl.h,
Packit 0b5880
	src/check_log.c, src/check_msg.c, src/check_msg.h,
Packit 0b5880
	src/check_pack.c, src/check_run.c, src/check_str.c, src/list.c,
Packit 0b5880
	src/list.h, tests/check_check_fixture.c, tests/check_check_fork.c,
Packit 0b5880
	tests/check_check_master.c, tests/check_check_pack.c,
Packit 0b5880
	tests/check_list.c: Applied a slightly modified version of a patch
Packit 0b5880
	from Neil Spring <nspring@cs.washington.edu> that declares strings
Packit 0b5880
	as const where applicable. It also changes our CFLAGS to be much
Packit 0b5880
	stricter and removes the warnings introduced by -Wwrite-strings. 
Packit 0b5880
	This allows building other check tests with -Wwrite-strings without
Packit 0b5880
	heaping gobs of compiler warnings.
Packit 0b5880
Packit 0b5880
2002-03-28 20:12  neo23
Packit 0b5880
Packit 0b5880
	* ChangeLog: Updated ChangeLog.
Packit 0b5880
Packit 0b5880
2002-03-28 19:37  neo23
Packit 0b5880
Packit 0b5880
	* src/check.c, src/check.h.in, tests/check_check_master.c,
Packit 0b5880
	tests/check_check_sub.c: Allow fail_unless() to be called with a
Packit 0b5880
	NULL msg and substitute a reasonable error message in that case.
Packit 0b5880
	Bail out if NULL is passed to _fail_unless() to avoid possible
Packit 0b5880
	confusion.
Packit 0b5880
	
Packit 0b5880
	Added a test case that calls fail_unless() with msg=NULL.
Packit 0b5880
Packit 0b5880
2002-03-28 19:19  neo23
Packit 0b5880
Packit 0b5880
	* Makefile.am, README, autogen.sh, check.m4, configure.in,
Packit 0b5880
	doc/tutorial.lyx, doc/money/.cvsignore,
Packit 0b5880
	doc/money/Makefile.am.money, doc/money/aclocal.m4,
Packit 0b5880
	doc/money/configure.in.money, rpm/.cvsignore, rpm/Makefile.am,
Packit 0b5880
	rpm/check.spec, rpm/check.spec.in, src/.cvsignore, src/Makefile.am,
Packit 0b5880
	src/check.c, src/check.h, src/check.h.in, tests/.cvsignore: Changed
Packit 0b5880
	autogen.sh to bail out if necessary tools can't be found instead of
Packit 0b5880
	proceeding to the version checks.
Packit 0b5880
	
Packit 0b5880
	Document use of autogen.sh in README.
Packit 0b5880
	
Packit 0b5880
	Generate check.spec from check.spec.in to it automatically gets the
Packit 0b5880
	correct version number.
Packit 0b5880
	
Packit 0b5880
	Generate check.h from chech.h.in and include Check version
Packit 0b5880
	information.
Packit 0b5880
	
Packit 0b5880
	Compile Check version number into the library to allow for runtime
Packit 0b5880
	version checks.
Packit 0b5880
	
Packit 0b5880
	Added the m4 script check.m4 that allows to easily integrate Check
Packit 0b5880
	into projects using autoconf/automake. It does version checking and
Packit 0b5880
	also assures that header and library versions match.
Packit 0b5880
	
Packit 0b5880
	Document the use of check.m4 and the AM_PATH_CHECK() macro in the
Packit 0b5880
	tutorial. Adapted example Makefile.am and configure.in and added a
Packit 0b5880
	missing .cvsignore file.
Packit 0b5880
Packit 0b5880
2002-03-27 02:21  amalec
Packit 0b5880
Packit 0b5880
	* src/Makefile.in, tests/Makefile.in: Complete CVS cleanup
Packit 0b5880
Packit 0b5880
2002-03-27 02:18  amalec
Packit 0b5880
Packit 0b5880
	* .cvsignore, Makefile.am, Makefile.in, autogen.sh, configure,
Packit 0b5880
	debian/.cvsignore, debian/Makefile.in, doc/.cvsignore,
Packit 0b5880
	doc/Makefile.in, doc/money/Makefile.in, rpm/.cvsignore,
Packit 0b5880
	rpm/Makefile.in, src/.cvsignore, tests/.cvsignore: Cleaned up CVS
Packit 0b5880
	to remove all autofoo generated files, included an autogen.sh
Packit 0b5880
	bootstrap file. Changes at the suggestion of Sven Neumann
Packit 0b5880
Packit 0b5880
2002-03-02 02:42  amalec
Packit 0b5880
Packit 0b5880
	* ChangeLog: Update ChangeLog
Packit 0b5880
Packit 0b5880
2002-03-02 02:42  amalec
Packit 0b5880
Packit 0b5880
	* debian/changelog, debian/files, rpm/check.spec, src/Makefile.am,
Packit 0b5880
	src/Makefile.in, src/check.c, src/check_error.c, src/check_error.h,
Packit 0b5880
	src/check_log.c, src/check_msg.c, src/check_pack.c,
Packit 0b5880
	src/check_run.c, src/check_str.c, src/error.c, src/error.h,
Packit 0b5880
	src/list.c, tests/check_check_fixture.c, tests/check_check_pack.c:
Packit 0b5880
	Moved error.[hc] to check_error.[hc], and fixed bug in running
Packit 0b5880
	checked setup in nofork mode.
Packit 0b5880
Packit 0b5880
2002-02-28 03:02  amalec
Packit 0b5880
Packit 0b5880
	* COPYING, configure, configure.in, src/check.c, src/check.h,
Packit 0b5880
	src/check_impl.h, src/check_log.c, src/check_log.h,
Packit 0b5880
	src/check_magic.h, src/check_msg.c, src/check_msg.h,
Packit 0b5880
	src/check_pack.c, src/check_pack.h, src/check_print.c,
Packit 0b5880
	src/check_print.h, src/check_run.c, src/check_str.c,
Packit 0b5880
	src/check_str.h, src/error.c, src/error.h, src/list.c, src/list.h:
Packit 0b5880
	Changed license to LGPL
Packit 0b5880
Packit 0b5880
2001-10-26 01:19  amalec
Packit 0b5880
Packit 0b5880
	* ChangeLog: Update ChangeLog
Packit 0b5880
Packit 0b5880
2001-10-26 01:18  amalec
Packit 0b5880
Packit 0b5880
	* AUTHORS: Update AUTHORS to give credit to key contributors
Packit 0b5880
Packit 0b5880
2001-10-26 01:12  amalec
Packit 0b5880
Packit 0b5880
	* configure, configure.in: Clarified configuration warning on doc
Packit 0b5880
	building
Packit 0b5880
Packit 0b5880
2001-10-26 00:51  amalec
Packit 0b5880
Packit 0b5880
	* ChangeLog: Updating ChangeLog prior to release
Packit 0b5880
Packit 0b5880
2001-10-26 00:45  amalec
Packit 0b5880
Packit 0b5880
	* src/check_run.c, tests/check_check_pack.c: Fixed some missing
Packit 0b5880
	header includes
Packit 0b5880
Packit 0b5880
2001-10-26 00:25  amalec
Packit 0b5880
Packit 0b5880
	* src/check_pack.c: Fix packing of NULL strings (causing problems
Packit 0b5880
	under Solaris)
Packit 0b5880
Packit 0b5880
2001-10-26 00:17  amalec
Packit 0b5880
Packit 0b5880
	* tests/check_check_pack.c: Minor change to pack tests to ensure
Packit 0b5880
	that tests don't pass accidentally
Packit 0b5880
Packit 0b5880
2001-10-25 02:45  amalec
Packit 0b5880
Packit 0b5880
	* ChangeLog: Updated ChangeLog
Packit 0b5880
Packit 0b5880
2001-10-25 02:44  amalec
Packit 0b5880
Packit 0b5880
	* depcomp: Added new automake file
Packit 0b5880
Packit 0b5880
2001-10-25 02:43  amalec
Packit 0b5880
Packit 0b5880
	* NEWS, doc/index.html, doc/money/check_money.c,
Packit 0b5880
	tests/check_check_sub.c: Added comments on string functions to
Packit 0b5880
	NEWS, cleaned up money example, and fixed a signal unit test so
Packit 0b5880
	that it will pass under cygwin
Packit 0b5880
Packit 0b5880
2001-10-24 19:25  amalec
Packit 0b5880
Packit 0b5880
	* Makefile.in, NEWS, aclocal.m4, configure, debian/Makefile.in,
Packit 0b5880
	debian/changelog, debian/files, doc/Makefile.am, doc/Makefile.in,
Packit 0b5880
	doc/tutorial.lyx, doc/money/Makefile.in, rpm/Makefile.in,
Packit 0b5880
	rpm/check.spec, src/Makefile.am, src/Makefile.in, src/check.h,
Packit 0b5880
	src/check_log.c, src/check_msg.c, src/check_msg.h,
Packit 0b5880
	src/check_print.c, src/check_run.c, tests/Makefile.am,
Packit 0b5880
	tests/Makefile.in, tests/check_check_fixture.c,
Packit 0b5880
	tests/check_check_fork.c, tests/check_check_limit.c,
Packit 0b5880
	tests/check_check_main.c, tests/check_check_master.c,
Packit 0b5880
	tests/check_stress.c, tests/ex_log_output.c, tests/ex_output.c,
Packit 0b5880
	tests/test_log_output.sh, tests/test_output.sh: Documentation
Packit 0b5880
	updates
Packit 0b5880
Packit 0b5880
2001-10-23 01:57  amalec
Packit 0b5880
Packit 0b5880
	* src/check_msg.c, src/check_pack.c, src/check_pack.h,
Packit 0b5880
	tests/check_check_pack.c: Removed old ppunpack, renamed new_*, and
Packit 0b5880
	updated callers
Packit 0b5880
Packit 0b5880
2001-10-23 01:26  amalec
Packit 0b5880
Packit 0b5880
	* src/check_msg.c, src/check_msg.h, src/check_pack.c,
Packit 0b5880
	src/check_run.c, tests/check_check_master.c,
Packit 0b5880
	tests/check_check_msg.c, tests/check_check_pack.c: Moved Check to
Packit 0b5880
	use new internal ppack routine, and fixed a nasty bug
Packit 0b5880
Packit 0b5880
2001-10-20 01:27  amalec
Packit 0b5880
Packit 0b5880
	* src/check_msg.c, src/check_msg.h, src/check_pack.c,
Packit 0b5880
	tests/check_check_msg.c, tests/check_check_pack.c: New version of
Packit 0b5880
	receive_test_result passes unit tests
Packit 0b5880
Packit 0b5880
2001-10-19 20:44  amalec
Packit 0b5880
Packit 0b5880
	* src/check_pack.c, src/check_pack.h, tests/check_check_fixture.c,
Packit 0b5880
	tests/check_check_pack.c: Changed punpack to return test and
Packit 0b5880
	fixture locs to preserve test information when teardown messages
Packit 0b5880
	are sent
Packit 0b5880
Packit 0b5880
2001-10-17 03:15  amalec
Packit 0b5880
Packit 0b5880
	* src/check_run.c, tests/check_check_fixture.c: Checked setup
Packit 0b5880
	passes unit tests
Packit 0b5880
Packit 0b5880
2001-10-13 18:13  amalec
Packit 0b5880
Packit 0b5880
	* src/Makefile.am, src/Makefile.in, src/check.c, src/check_msg.c,
Packit 0b5880
	src/check_msg.h, src/check_run.c, tests/check_check_msg.c: Replace
Packit 0b5880
	previous messaging implementation files with new module
Packit 0b5880
Packit 0b5880
2001-10-13 08:05  amalec
Packit 0b5880
Packit 0b5880
	* src/check.c, src/check.h, src/check_log.c, src/check_msg.c,
Packit 0b5880
	src/check_pack.c, src/check_run.c, src/check_str.c, src/error.c,
Packit 0b5880
	src/error.h, tests/check_check_master.c, tests/test_log_output.sh,
Packit 0b5880
	tests/test_output.sh: Fully implemented new messaging back-end
Packit 0b5880
	based on pipes
Packit 0b5880
Packit 0b5880
2001-10-10 20:01  amalec
Packit 0b5880
Packit 0b5880
	* Makefile.in, aclocal.m4, configure, debian/Makefile.in,
Packit 0b5880
	doc/Makefile.in, doc/money/Makefile.in, rpm/Makefile.in,
Packit 0b5880
	src/Makefile.am, src/Makefile.in, src/check.c, src/check_impl.h,
Packit 0b5880
	src/check_pack.c, tests/Makefile.in, tests/check_check_msg.c,
Packit 0b5880
	tests/check_check_pack.c: Updated messaging tests to use new
Packit 0b5880
	infrastructure
Packit 0b5880
Packit 0b5880
2001-10-04 23:55  amalec
Packit 0b5880
Packit 0b5880
	* src/check.c, src/check.h, src/check_impl.h, src/check_pack.c,
Packit 0b5880
	src/check_pack.h, tests/check_check_pack.c: Completed
Packit 0b5880
	implementation of check_pack
Packit 0b5880
Packit 0b5880
2001-10-02 17:38  amalec
Packit 0b5880
Packit 0b5880
	* doc/index.html, doc/tutorial.lyx, src/Makefile.am,
Packit 0b5880
	src/Makefile.in, src/check.c, src/check.h, src/check_magic.h,
Packit 0b5880
	src/check_msg.h, src/check_pack.c, src/check_pack.h,
Packit 0b5880
	tests/Makefile.am, tests/Makefile.in, tests/check_check.h,
Packit 0b5880
	tests/check_check_fixture.c, tests/check_check_fork.c,
Packit 0b5880
	tests/check_check_limit.c, tests/check_check_main.c,
Packit 0b5880
	tests/check_check_master.c, tests/check_check_msg.c,
Packit 0b5880
	tests/check_check_pack.c: First generation packing code as the
Packit 0b5880
	infrastructure to revising message passing between processes, to
Packit 0b5880
	accomodate context messages
Packit 0b5880
Packit 0b5880
2001-09-28 02:20  amalec
Packit 0b5880
Packit 0b5880
	* src/check.c, src/check.h, src/check_impl.h, src/check_run.c,
Packit 0b5880
	src/list.c, src/list.h, tests/check_check_fixture.c,
Packit 0b5880
	tests/check_check_fork.c, tests/check_check_limit.c,
Packit 0b5880
	tests/check_check_master.c, tests/check_check_msg.c: Added
Packit 0b5880
	framework for support of checked fixture functions
Packit 0b5880
Packit 0b5880
2001-09-27 18:08  amalec
Packit 0b5880
Packit 0b5880
	* src/: check.c, check_run.c: Refactored failure info functions
Packit 0b5880
Packit 0b5880
2001-09-19 02:14  amalec
Packit 0b5880
Packit 0b5880
	* src/check.c, src/check.h, src/check_impl.h, src/check_magic.h,
Packit 0b5880
	src/check_msg.c, src/check_msg.h, src/check_print.c,
Packit 0b5880
	src/check_run.c, src/check_str.c, tests/Makefile.am,
Packit 0b5880
	tests/Makefile.in, tests/check_check.h,
Packit 0b5880
	tests/check_check_fixture.c, tests/check_check_main.c,
Packit 0b5880
	tests/check_check_master.c: Setup failure is working and partially
Packit 0b5880
	tested
Packit 0b5880
Packit 0b5880
2001-09-15 01:15  amalec
Packit 0b5880
Packit 0b5880
	* tests/: check_check.h, check_check_fork.c, check_check_main.c:
Packit 0b5880
	Completed implementation of CK_NOFORK
Packit 0b5880
Packit 0b5880
2001-09-08 00:12  amalec
Packit 0b5880
Packit 0b5880
	* src/: check_impl.h, check_msg.c, check_msg.h, check_run.c:
Packit 0b5880
	Implemented nofork mode
Packit 0b5880
Packit 0b5880
2001-09-06 20:10  amalec
Packit 0b5880
Packit 0b5880
	* Doxyfile, configure.in, src/check.h, src/check_impl.h,
Packit 0b5880
	src/check_log.c, src/check_log.h, src/check_print.c,
Packit 0b5880
	src/check_print.h, src/check_run.c, tests/Makefile.am,
Packit 0b5880
	tests/Makefile.in, tests/check_check.h, tests/check_check_main.c:
Packit 0b5880
	Added initial control functions to control forking
Packit 0b5880
Packit 0b5880
2001-09-05 18:48  amalec
Packit 0b5880
Packit 0b5880
	* src/check.c, src/check_msg.c, src/check_msg.h, src/check_run.c,
Packit 0b5880
	tests/check_check_msg.c: Completely abstracted the details of
Packit 0b5880
	messaging behind check_msg.c
Packit 0b5880
Packit 0b5880
2001-09-01 02:12  amalec
Packit 0b5880
Packit 0b5880
	* src/: check.c, check_msg.c, check_msg.h, check_run.c: Ensure that
Packit 0b5880
	each subprocesses alloc the correct msg queue
Packit 0b5880
Packit 0b5880
2001-08-30 03:00  amalec
Packit 0b5880
Packit 0b5880
	* src/check.c, src/check.h, src/check_msg.c, src/check_msg.h,
Packit 0b5880
	src/check_run.c, tests/check_check_msg.c: Eliminated passing of
Packit 0b5880
	msqid in unit tests
Packit 0b5880
Packit 0b5880
2001-08-29 02:49  amalec
Packit 0b5880
Packit 0b5880
	* src/check_print.c, src/check_str.c, tests/check_check_limit.c:
Packit 0b5880
	Added test checking running empty suites
Packit 0b5880
Packit 0b5880
2001-08-28 19:06  amalec
Packit 0b5880
Packit 0b5880
	* src/check_magic.h: Moved magic values to separate header
Packit 0b5880
Packit 0b5880
2001-08-28 19:04  amalec
Packit 0b5880
Packit 0b5880
	* src/Makefile.am, src/Makefile.in, src/check.h, src/check_impl.h,
Packit 0b5880
	src/check_print.c, src/check_str.c, src/check_str.h,
Packit 0b5880
	tests/check_check_master.c, tests/check_check_msg.c: Separated
Packit 0b5880
	printing from string formating functions to allow better testing.
Packit 0b5880
Packit 0b5880
2001-08-28 02:18  amalec
Packit 0b5880
Packit 0b5880
	* configure, configure.in, src/check_msg.c, src/check_msg.h,
Packit 0b5880
	src/check_run.c, tests/Makefile.am, tests/Makefile.in,
Packit 0b5880
	tests/check_check.h, tests/check_check_main.c,
Packit 0b5880
	tests/check_check_msg.c: Use pid/ppid as message queue key,
Packit 0b5880
	preliminary to removing _msqid from unit test functions
Packit 0b5880
Packit 0b5880
2001-08-23 23:26  amalec
Packit 0b5880
Packit 0b5880
	* ChangeLog: Final ChangeLog for 0.7.3 release
Packit 0b5880
Packit 0b5880
2001-08-23 23:25  amalec
Packit 0b5880
Packit 0b5880
	* NEWS: Document 0.7.3 in NEWS
Packit 0b5880
Packit 0b5880
2001-08-23 23:13  amalec
Packit 0b5880
Packit 0b5880
	* debian/changelog: This time, fix debian changelog correctly
Packit 0b5880
Packit 0b5880
2001-08-23 23:10  amalec
Packit 0b5880
Packit 0b5880
	* debian/changelog: Fixed maintainer email in debian changelog
Packit 0b5880
Packit 0b5880
2001-08-23 01:08  amalec
Packit 0b5880
Packit 0b5880
	* ChangeLog, acinclude.m4, aclocal.m4, configure, configure.in,
Packit 0b5880
	debian/changelog, debian/check.doc-base.tut, debian/files,
Packit 0b5880
	rpm/check.spec: Updated acinclude.m4 to increase portability; fixed
Packit 0b5880
	a minor packaging bug in debian doc-base files
Packit 0b5880
Packit 0b5880
2001-08-18 07:28  amalec
Packit 0b5880
Packit 0b5880
	* ChangeLog, doc/index.html: index.html changes
Packit 0b5880
Packit 0b5880
2001-08-18 07:24  amalec
Packit 0b5880
Packit 0b5880
	* INSTALL, NEWS: NEWS and INSTALL changes
Packit 0b5880
Packit 0b5880
2001-08-18 07:15  amalec
Packit 0b5880
Packit 0b5880
	* Doxyfile, configure, configure.in,
Packit 0b5880
	debian/check.postinst.debhelper, debian/check.prerm.debhelper,
Packit 0b5880
	debian/files, doc/Makefile.in, doc/tutorial.lyx, rpm/Makefile.am,
Packit 0b5880
	rpm/Makefile.in, rpm/check.spec, src/check.c, src/check.h,
Packit 0b5880
	src/check_log.c, src/check_msg.c, src/check_print.c,
Packit 0b5880
	src/check_run.c, tests/check_check_log.c,
Packit 0b5880
	tests/check_check_master.c, tests/check_check_msg.c,
Packit 0b5880
	tests/check_list.c, tests/check_stress.c, tests/ex_log_output.c,
Packit 0b5880
	tests/ex_output.c: Bug fixes and assorted cleanup prior to release
Packit 0b5880
Packit 0b5880
2001-08-18 01:16  amalec
Packit 0b5880
Packit 0b5880
	* doc/money/: Makefile.am, Makefile.in: Added money example
Packit 0b5880
	Makefiles to CVS
Packit 0b5880
Packit 0b5880
2001-08-18 01:13  amalec
Packit 0b5880
Packit 0b5880
	* doc/: Makefile.am, example.lyx, tutorial.lyx: Moved example.lyx
Packit 0b5880
	to tutorial.lyx
Packit 0b5880
Packit 0b5880
2001-08-16 02:47  amalec
Packit 0b5880
Packit 0b5880
	* acinclude.m4, debian/Makefile.am, debian/Makefile.in,
Packit 0b5880
	debian/check.docs: Added leftover stuff in debian directory,
Packit 0b5880
	acinclude.m4
Packit 0b5880
Packit 0b5880
2001-08-16 02:45  amalec
Packit 0b5880
Packit 0b5880
	* Makefile.am, Makefile.in, aclocal.m4, configure, configure.in,
Packit 0b5880
	debian/check.doc-base.tut, debian/control, debian/docs,
Packit 0b5880
	doc/Makefile.am, doc/Makefile.in, doc/money/AUTHORS,
Packit 0b5880
	doc/money/COPYING, doc/money/ChangeLog, doc/money/INSTALL,
Packit 0b5880
	doc/money/Makefile.am, doc/money/Makefile.am.money,
Packit 0b5880
	doc/money/Makefile.in, doc/money/NEWS, doc/money/README,
Packit 0b5880
	doc/money/config.h.in, doc/money/configure, doc/money/configure.in,
Packit 0b5880
	doc/money/configure.in.money, doc/money/stamp-h.in,
Packit 0b5880
	rpm/Makefile.in, rpm/check.spec, src/Makefile.in,
Packit 0b5880
	tests/Makefile.in: Added configure check for Lyx with Linuxdoc
Packit 0b5880
Packit 0b5880
2001-08-06 22:45  amalec
Packit 0b5880
Packit 0b5880
	* rpm/Makefile.in: Added rpm/Makefile.in
Packit 0b5880
Packit 0b5880
2001-08-06 22:44  amalec
Packit 0b5880
Packit 0b5880
	* Makefile.am, Makefile.in, configure, configure.in,
Packit 0b5880
	debian/changelog, debian/check.dirs, debian/check.files,
Packit 0b5880
	debian/rules, doc/Makefile.am, doc/Makefile.in, doc/index.html,
Packit 0b5880
	doc/money/AUTHORS, doc/money/COPYING, doc/money/ChangeLog,
Packit 0b5880
	doc/money/NEWS, doc/money/README, rpm/check.spec: Can now build
Packit 0b5880
	complete debs
Packit 0b5880
Packit 0b5880
2001-08-04 07:40  amalec
Packit 0b5880
Packit 0b5880
	* debian/README.Debian: Don't need README.Debian
Packit 0b5880
Packit 0b5880
2001-08-04 07:26  amalec
Packit 0b5880
Packit 0b5880
	* debian/README.Debian, debian/changelog, debian/check.dirs,
Packit 0b5880
	debian/check.files, debian/check.postinst.debhelper,
Packit 0b5880
	debian/check.prerm.debhelper, debian/control, debian/copyright,
Packit 0b5880
	debian/dirs, debian/docs, debian/files, debian/rules,
Packit 0b5880
	doc/Makefile.am, doc/index.html: Added preliminary debian packaging
Packit 0b5880
	files
Packit 0b5880
Packit 0b5880
2001-08-03 03:05  amalec
Packit 0b5880
Packit 0b5880
	* Makefile.am, Makefile.in, aclocal.m4, configure, configure.in,
Packit 0b5880
	doc/index.html, rpm/Makefile.am, rpm/buildrpm.sh: Added automatic
Packit 0b5880
	building of RPMs
Packit 0b5880
Packit 0b5880
2001-07-31 18:51  amalec
Packit 0b5880
Packit 0b5880
	* doc/index.html: Update index.html for final release to main Check
Packit 0b5880
	website.
Packit 0b5880
Packit 0b5880
2001-07-31 03:08  amalec
Packit 0b5880
Packit 0b5880
	* ChangeLog: Update ChangeLog
Packit 0b5880
Packit 0b5880
2001-07-31 03:08  amalec
Packit 0b5880
Packit 0b5880
	* NEWS, configure, configure.in, doc/example.lyx, rpm/buildrpm.sh,
Packit 0b5880
	rpm/check.spec, tests/Makefile.am, tests/Makefile.in,
Packit 0b5880
	tests/ex_log_output.c, tests/test_log_output.sh: Update NEWS, docs,
Packit 0b5880
	and rpm building
Packit 0b5880
Packit 0b5880
2001-07-30 22:10  amalec
Packit 0b5880
Packit 0b5880
	* ChangeLog: Update ChangeLog
Packit 0b5880
Packit 0b5880
2001-07-30 22:10  amalec
Packit 0b5880
Packit 0b5880
	* doc/Makefile.in, tests/ex_log_output.c: Add neglected files
Packit 0b5880
Packit 0b5880
2001-07-30 22:08  amalec
Packit 0b5880
Packit 0b5880
	* src/Makefile.am, src/Makefile.in, src/check_impl.h,
Packit 0b5880
	src/check_log.c, src/check_log.h, src/check_print.c,
Packit 0b5880
	src/check_print.h, src/check_run.c, tests/test_log_output.sh:
Packit 0b5880
	Reorganized printing and logging functions and implemented more
Packit 0b5880
	sophisticated logging
Packit 0b5880
Packit 0b5880
2001-07-25 23:26  amalec
Packit 0b5880
Packit 0b5880
	* Makefile.in, aclocal.m4, config.h.in, configure,
Packit 0b5880
	doc/money/aclocal.m4, doc/money/config.h.in, doc/money/configure,
Packit 0b5880
	src/Makefile.in, tests/Makefile.in, tests/test_log_output.sh: Added
Packit 0b5880
	log tests
Packit 0b5880
Packit 0b5880
2001-07-11 22:46  amalec
Packit 0b5880
Packit 0b5880
	* NEWS, README, doc/example.lyx, rpm/check.spec, src/check.h,
Packit 0b5880
	tests/check_check_log.c, tests/check_check_main.c: Updated docs
Packit 0b5880
Packit 0b5880
2001-07-11 01:29  amalec
Packit 0b5880
Packit 0b5880
	* ChangeLog: Update ChangeLog
Packit 0b5880
Packit 0b5880
2001-07-11 01:28  amalec
Packit 0b5880
Packit 0b5880
	* src/Makefile.in, src/check_log.c, tests/check_check.h,
Packit 0b5880
	tests/check_check_log.c, tests/check_check_master.c,
Packit 0b5880
	tests/check_check_sub.c, tests/test_output.sh: Completed testing
Packit 0b5880
	for multiple suite running, and reorganized files
Packit 0b5880
Packit 0b5880
2001-07-11 01:26  amalec
Packit 0b5880
Packit 0b5880
	* src/: check_log.c, check_log.h: Commit file changes
Packit 0b5880
Packit 0b5880
2001-07-11 01:25  amalec
Packit 0b5880
Packit 0b5880
	* src/: Makefile.am, check.h, check_run.c: Moved check_log.h
Packit 0b5880
	functions into check.h
Packit 0b5880
Packit 0b5880
2001-07-10 02:10  amalec
Packit 0b5880
Packit 0b5880
	* ChangeLog: Commit ChangeLog
Packit 0b5880
Packit 0b5880
2001-07-10 02:09  amalec
Packit 0b5880
Packit 0b5880
	* src/check.c, src/check.h, src/check_impl.h, src/check_run.c,
Packit 0b5880
	src/list.h, tests/Makefile.am, tests/Makefile.in,
Packit 0b5880
	tests/check_check.h, tests/check_check_log.c,
Packit 0b5880
	tests/check_check_main.c, tests/check_check_master.c,
Packit 0b5880
	tests/check_check_msg.c, tests/check_check_sub.c,
Packit 0b5880
	tests/check_list.c: Completed test for initial logging feature, and
Packit 0b5880
	added feature to run multiple suites through an SRunner
Packit 0b5880
Packit 0b5880
2001-06-30 03:27  amalec
Packit 0b5880
Packit 0b5880
	* src/Makefile.in, src/check.h, src/check_impl.h, src/check_log.h,
Packit 0b5880
	src/check_run.c, tests/check_check_log.c, tests/test_output.sh:
Packit 0b5880
	Restructured printing to allow for logging function
Packit 0b5880
Packit 0b5880
2001-06-29 02:40  amalec
Packit 0b5880
Packit 0b5880
	* src/: Makefile.am, Makefile.in: Add check_log.c to Makefile.am
Packit 0b5880
Packit 0b5880
2001-06-29 02:33  amalec
Packit 0b5880
Packit 0b5880
	* tests/: Makefile.am, Makefile.in: Complete move of
Packit 0b5880
	check_check_log.c -- this time for real...
Packit 0b5880
Packit 0b5880
2001-06-29 02:31  amalec
Packit 0b5880
Packit 0b5880
	* Doxyfile, src/check_log.h, tests/Makefile.am, tests/Makefile.in:
Packit 0b5880
	Complete move of check_check_log.c
Packit 0b5880
Packit 0b5880
2001-06-29 02:30  amalec
Packit 0b5880
Packit 0b5880
	* tests/: Makefile.am, check_check_log.c, check_log.c: Moved
Packit 0b5880
	check_log.c to check_check_log.c
Packit 0b5880
Packit 0b5880
2001-06-29 00:56  amalec
Packit 0b5880
Packit 0b5880
	* doc/money/stamp-h: Removed stamp-h
Packit 0b5880
Packit 0b5880
2001-06-29 00:51  amalec
Packit 0b5880
Packit 0b5880
	* src/check_log.h, tests/check_log.c: Added skeleton files for
Packit 0b5880
	check logging
Packit 0b5880
Packit 0b5880
2001-06-29 00:33  amalec
Packit 0b5880
Packit 0b5880
	* Doxyfile, configure, configure.in, src/check.h,
Packit 0b5880
	tests/Makefile.am, tests/Makefile.in: Additional doxygenation of
Packit 0b5880
	check.h
Packit 0b5880
Packit 0b5880
2001-06-27 20:27  amalec
Packit 0b5880
Packit 0b5880
	* ChangeLog: Updated ChangeLog
Packit 0b5880
Packit 0b5880
2001-06-27 20:25  amalec
Packit 0b5880
Packit 0b5880
	* configure, rpm/check.spec: Updated check.spec
Packit 0b5880
Packit 0b5880
2001-06-27 20:21  amalec
Packit 0b5880
Packit 0b5880
	* ChangeLog: Update ChangeLog
Packit 0b5880
Packit 0b5880
2001-06-27 20:20  amalec
Packit 0b5880
Packit 0b5880
	* NEWS, configure.in, doc/example.lyx, doc/money/check_money.c,
Packit 0b5880
	doc/money/configure, doc/money/configure.in, src/check.h,
Packit 0b5880
	src/check_run.c, tests/check_check_main.c,
Packit 0b5880
	tests/check_check_master.c, tests/check_check_msg.c,
Packit 0b5880
	tests/check_list.c, tests/check_stress.c: Completed
Packit 0b5880
	srunner_results, and added unit tests; changed srunner_nfailed to
Packit 0b5880
	srunner_ntests_failed and changed documentation.
Packit 0b5880
Packit 0b5880
2001-06-27 00:51  amalec
Packit 0b5880
Packit 0b5880
	* Doxyfile, doc/example.lyx, src/check.h, src/check_run.c,
Packit 0b5880
	tests/Makefile.am, tests/Makefile.in, tests/check_check.c,
Packit 0b5880
	tests/check_check.h, tests/check_check_main.c,
Packit 0b5880
	tests/check_check_master.c, tests/check_check_msg.c,
Packit 0b5880
	tests/check_check_sub.c, tests/check_list.c, tests/check_stress.c:
Packit 0b5880
	Fixed a bug in srunner_failures, fixed a typo in the tutorial
Packit 0b5880
	documentation (thanks to Michael Tucker), and refactored
Packit 0b5880
	check_check
Packit 0b5880
Packit 0b5880
2001-06-22 03:16  amalec
Packit 0b5880
Packit 0b5880
	* ChangeLog: Update ChangeLog
Packit 0b5880
Packit 0b5880
2001-06-22 03:15  amalec
Packit 0b5880
Packit 0b5880
	* NEWS, doc/Makefile.am, doc/example.lyx, doc/index.html,
Packit 0b5880
	rpm/check.spec, tests/Makefile.am, tests/Makefile.in: Specfile
Packit 0b5880
	changes, updates to NEWS
Packit 0b5880
Packit 0b5880
2001-06-22 02:37  amalec
Packit 0b5880
Packit 0b5880
	* ChangeLog: Update ChangeLog
Packit 0b5880
Packit 0b5880
2001-06-22 02:36  amalec
Packit 0b5880
Packit 0b5880
	* src/check.h, src/check_run.c, tests/Makefile.am,
Packit 0b5880
	tests/Makefile.in, tests/check_check.c, tests/ex_output.c,
Packit 0b5880
	tests/test_output.sh: Changed test output, added end-to-end test,
Packit 0b5880
	and removed redundant field from TestResult struct
Packit 0b5880
Packit 0b5880
2001-06-19 22:01  amalec
Packit 0b5880
Packit 0b5880
	* ChangeLog: Update changelog
Packit 0b5880
Packit 0b5880
2001-06-19 21:59  amalec
Packit 0b5880
Packit 0b5880
	* src/check.h, src/check_run.c, tests/check_check.c: Added
Packit 0b5880
	accessors for TestResult and expanded unit test
Packit 0b5880
Packit 0b5880
2001-06-12 19:29  amalec
Packit 0b5880
Packit 0b5880
	* ChangeLog: Updated ChangeLog
Packit 0b5880
Packit 0b5880
2001-06-12 19:28  amalec
Packit 0b5880
Packit 0b5880
	* configure, configure.in, src/check.h, src/check_run.c,
Packit 0b5880
	tests/check_check.c: Added new tests for line number
Packit 0b5880
Packit 0b5880
2001-06-04 19:58  amalec
Packit 0b5880
Packit 0b5880
	* ChangeLog, doc/index.html: Added homepage file in doc directory,
Packit 0b5880
	and updated change log
Packit 0b5880
Packit 0b5880
2001-06-04 19:08  amalec
Packit 0b5880
Packit 0b5880
	* doc/Makefile.am, doc/example.lyx, rpm/check.spec: Cleaned up spec
Packit 0b5880
	file for RPM packaging
Packit 0b5880
Packit 0b5880
2001-06-04 01:50  amalec
Packit 0b5880
Packit 0b5880
	* Makefile.am, Makefile.in, configure, configure.in,
Packit 0b5880
	doc/Makefile.am, rpm/check.spec: Added RPM spec file and added
Packit 0b5880
	additional documentation files
Packit 0b5880
Packit 0b5880
2001-06-01 17:46  amalec
Packit 0b5880
Packit 0b5880
	* ChangeLog: Updated ChangeLog
Packit 0b5880
Packit 0b5880
2001-06-01 17:44  amalec
Packit 0b5880
Packit 0b5880
	* Makefile.in, src/Makefile.in, src/check.c, src/check.h,
Packit 0b5880
	src/check_impl.h, src/check_msg.c, src/check_msg.h,
Packit 0b5880
	src/check_run.c, src/error.c, src/error.h, src/list.c, src/list.h,
Packit 0b5880
	tests/Makefile.in: GNUified source files with copyright notice
Packit 0b5880
Packit 0b5880
2001-06-01 17:33  amalec
Packit 0b5880
Packit 0b5880
	* aclocal.m4, configure, configure.in, doc/Makefile.am,
Packit 0b5880
	doc/example.lyx: Made building docs conditional on presence of lyx
Packit 0b5880
	and sgml2html
Packit 0b5880
Packit 0b5880
2001-06-01 00:35  amalec
Packit 0b5880
Packit 0b5880
	* ChangeLog: Update ChangeLog
Packit 0b5880
Packit 0b5880
2001-06-01 00:34  amalec
Packit 0b5880
Packit 0b5880
	* configure.in, doc/Makefile.am: Modified Makefile.am to include
Packit 0b5880
	docs in dist
Packit 0b5880
Packit 0b5880
2001-06-01 00:26  amalec
Packit 0b5880
Packit 0b5880
	* ChangeLog, Makefile.am, Makefile.in, aclocal.m4, configure,
Packit 0b5880
	configure.in, doc/Makefile.am, src/Makefile.in, tests/Makefile.in:
Packit 0b5880
	Added Automake support to create and install documentation
Packit 0b5880
Packit 0b5880
2001-05-31 23:30  amalec
Packit 0b5880
Packit 0b5880
	* doc/money/: config.h, config.log, config.status: Removed unneded
Packit 0b5880
	files
Packit 0b5880
Packit 0b5880
2001-05-31 17:37  amalec
Packit 0b5880
Packit 0b5880
	* ChangeLog, ChangeLogOld: Updated change logs
Packit 0b5880
Packit 0b5880
2001-05-31 17:35  amalec
Packit 0b5880
Packit 0b5880
	* doc/example.lyx: Commit changes to example, get things in synch
Packit 0b5880
Packit 0b5880
2001-05-31 17:32  amalec
Packit 0b5880
Packit 0b5880
	* doc/money/: COPYING, ChangeLog, INSTALL, Makefile.am,
Packit 0b5880
	Makefile.in, NEWS, README, aclocal.m4, check_money.c, config.h,
Packit 0b5880
	config.h.in, config.log, config.status, configure, configure.in,
Packit 0b5880
	money.c, money.h, stamp-h, stamp-h.in: Hopefully finally solved CVS
Packit 0b5880
	problems and commited changes to money example and example.lyx
Packit 0b5880
Packit 0b5880
2001-05-31 01:48  amalec
Packit 0b5880
Packit 0b5880
	* doc/money/AUTHORS: Trying to commit added files...
Packit 0b5880
Packit 0b5880
2001-05-31 01:45  amalec
Packit 0b5880
Packit 0b5880
	* doc/example.lyx: Cleaning up CVS..
Packit 0b5880
Packit 0b5880
2001-05-31 01:37  amalec
Packit 0b5880
Packit 0b5880
	* ChangeLogOld: Trying to update documentation and change log, and
Packit 0b5880
	statisfy CVS...
Packit 0b5880
Packit 0b5880
2001-05-31 01:34  amalec
Packit 0b5880
Packit 0b5880
	* ChangeLog: Refined documentation, and moved old change log
Packit 0b5880
	information to ChangeLogOld
Packit 0b5880
Packit 0b5880
2001-05-31 00:44  amalec
Packit 0b5880
Packit 0b5880
	* doc/example.lyx: Added complete example to accompany
Packit 0b5880
	documentation
Packit 0b5880
Packit 0b5880
2001-05-30 05:25  amalec
Packit 0b5880
Packit 0b5880
	* Makefile.in: Added example and expanded documentation
Packit 0b5880
Packit 0b5880
2001-05-30 00:42  amalec
Packit 0b5880
Packit 0b5880
	* AUTHORS, Makefile.in, README, stamp-h.in, COPYING, ChangeLog,
Packit 0b5880
	INSTALL, Makefile.am, NEWS, aclocal.m4, config.h.in, configure,
Packit 0b5880
	configure.in, install-sh, missing, mkinstalldirs, src/Makefile.am,
Packit 0b5880
	src/Makefile.in, src/check.c, src/check.h, src/check_impl.h,
Packit 0b5880
	src/check_run.c, doc/example.lyx, src/check_msg.c, src/check_msg.h,
Packit 0b5880
	src/error.c, src/error.h, src/list.c, src/list.h,
Packit 0b5880
	tests/Makefile.am, tests/Makefile.in, tests/check_check.c,
Packit 0b5880
	tests/check_check_msg.c, tests/check_list.c, tests/check_stress.c:
Packit 0b5880
	Initial revision
Packit 0b5880
Packit 0b5880
2001-05-30 00:42  amalec
Packit 0b5880
Packit 0b5880
	* AUTHORS, Makefile.in, README, stamp-h.in, COPYING, ChangeLog,
Packit 0b5880
	INSTALL, Makefile.am, NEWS, aclocal.m4, config.h.in, configure,
Packit 0b5880
	configure.in, install-sh, missing, mkinstalldirs, src/Makefile.am,
Packit 0b5880
	src/Makefile.in, src/check.c, src/check.h, src/check_impl.h,
Packit 0b5880
	src/check_run.c, doc/example.lyx, src/check_msg.c, src/check_msg.h,
Packit 0b5880
	src/error.c, src/error.h, src/list.c, src/list.h,
Packit 0b5880
	tests/Makefile.am, tests/Makefile.in, tests/check_check.c,
Packit 0b5880
	tests/check_check_msg.c, tests/check_list.c, tests/check_stress.c:
Packit 0b5880
	Import into Sourceforge. Previous CVS version information resides
Packit 0b5880
	on Arien's local machine
Packit 0b5880