Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
IT IS NOT NECESSARY TO UPDATE THIS FILE.
PLEASE MAKE SURE TO LEAVE A GOOD SVN COMMIT MESSAGE.
2010-04-08 Micah Cowan <micah@cowan.name>
* configure.ac: Determine at configure time, how many
backslashes are needed in the second argument to Awk's built-in
"gsub" function in order to generate two backslashes.
* checkmk/checkmk.in: Replaced POSIX character-classes
with (roughly) equivalent character groups from pre-POSIX
syntax, to support pre-POSIX awk implementations.
(string_encode): Use configure-substituted AWK_GSUB_DBL_BSLASH
to determine how to substitute a doubled backslash in gsub.
2010-04-03 Micah Cowan <micah@cowan.name>
* checkmk/*: Added Awk program "checkmk", for eliminating
boilerplate work when writing unit test modules. Includes
documentation and tests.
* Makefile.am (SUBDIRS): Added checkmk.
* configure.ac: Added extra awk-detection logic for checkmk.
* NEWS: Updated with news about checkmk.
* AUTHORS (Patches): Added myself.
2010-02-17 Jose E. Marchesi <jemarch@gnu.org>
* tests/check_check_selective.c (make_selective_suite): New
function.
(selective_setup): New function.
(selective_teardown): New function.
New tests 'test_srunner_run_run_all, 'test_srunner_run_suite',
'test_srunner_run_no_suite', test_srunner_run_tcase',
'test_srunner_no_tcase', 'test_srunner_suite_tcase',
'test_srunner_suite_no_tcase', 'test_srunner_run_suite_env',
'test_srunner_run_no_suite_env', 'test_srunner_run_tcase_env',
'test_srunner_run_no_tcase_env', 'test_srunner_suite_tcase_env',
'test_srunner_suite_no_tcase_env'.
* tests/Makefile.am (check_check_SOURCES): Add
'check_check_selective.c'.
* tests/check_check_selective.c: New file.
* tests/check_check_main.c (main): Add the selective_suite to the
master suite.
2010-02-10 Jose E. Marchesi <jemarch@gnu.org>
* doc/check.texi (SRunner Output): Document 'srunner_run' and the
usage of CK_RUN_CASE and CK_RUN_SUITE environment variables.
* src/check_run.c (srunner_run): Use values of environment
variables CK_RUN_CASE and CK_RUN_SUITE.
2010-02-02 Jose E. Marchesi <jemarch@gnu.org>
* src/check.c (suite_tcase): New function that determines whether
a a given test suite contains a test case named after a given
string.
* src/check_run.c (srunner_run): New function, renamed from
'srunner_run_all', allowing selective running of an specific test
suite and/or test case.
(srunner_run_all): New function, invoking srunner_run internally
to provide backwards compatibility.
* src/check.h.in: Add prototype for srunner_run.
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
2005-12-16 hugo303
* src/check_pack.c: Fixed buggy eprintf string.
2005-10-31 hugo303
* src/check_list.c, tests/check_list.c, tests/check_check_fixture.c:
Fixed sourceforge bug #1327225, Two teardown checked fixtures
segfaults. Originated in a pointer arithmetic bug in a memmove()
call in list_add_front() in src/check_list.c.
2005-09-30 hugo303
* doc/tutorial.sgml: Updated with a section about looping tests.
2005-09-30 hugo303
* src/check.c, src/check.h.in, src/check_impl.h, src/check_print.c,
src/check_run.c, src/check_str.c, tests/Makefile.am,
tests/check_check_fixture.c, tests/check_check_master.c,
tests/ex_xml_output.c, tests/test_log_output.sh, tests/test_output.sh,
tests/test_xml_output.sh:
Added a new kind of test, looping tests, which are called with a new
context for each loop iteration. This makes them ideal for table based
tests. Previously, with the loop in the test itself, only the first
error was caught and then the test would exit. Now all errors are
shown at once which should help in debugging.
2005-09-15 hugo303
* configure.in, tests/check_check_sub.c, tests/check_check.h,
tests/check_check_master.c, tests/Makefile.am:
Added possibility to turn off timeout tests through configure option
--enable-timeout-tests=no
2005-09-15 hugo303
* src/Makefile.am: Improved coverage analysis by running all tests
before compiling result. Added gcc3.3 coverage bug workaround.
2005-09-15 hugo303
* tests/check_check_sub.c, tests/check_check_master.c:
Added testing of timeout set through environment variable.
2005-09-07 hugo303
*configure.in, src/Makefile.am, tests/Makefile.am: Added gcov/lcov
support. Enable with 'autogen.sh --enable-gcov'.
Run with 'cd src && make lcov'.
2005-08-30 hugo303
* debian/README.Debian, debian/compat, debian/docs,
debian/example_makefile, debian/examples, debian/watch:
Added new debian files, missed in the checkin of the debian patch.
2005-08-30 hugo303
* NEWS: Checked in forgotten updated NEWS file.
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
2005-08-22 hugo303
* debian/changelog, debian/check.doc-base.tut, debian/check.docs,
debian/check.postinst.debhelper, debian/check.prerm.debhelper,
debian/control, debian/copyright, debian/dirs, debian/rules:
Applied patch for debian files received from check debian
maintainer Robert Lemmen.
2005-08-22 hugo303
* src/check.h.in: Added include of stddef.h for NULL definition
2005-08-22 hugo303
* doc/tutorial.sgml: Fixed sourceforge bug #1216502
2005-07-19 hugo303
* tests/check_check_master.c, tests/check_check_msg.c,
tests/check_check_sub.c, src/check.c, src/check.h.in,
src/check_msg.c, src/check_msg.h, src/check_run.c:
Refactored messaging to use the new tmpfile() method all the way,
removing the message keys, pipes, pipe entries and pipe list. This
makes the messaging work with forking tests, and also with threading
tests on linux 2.4 (on 2.6 it already worked). Added check_fork and
check_waitpid_and_exit to be used for forking tests.
2005-05-26 hugo303
* debian/Makefile.am: Removed 'files' file from DIST
2005-03-29 hugo303
* src/check.h.in: Fixed compatibility with gcc 2.95.3 according
to sourceforge patch #1161654.
2005-03-02 hugo303
* src/check.h.in: Added define for NULL if needed.
2005-03-01 hugo303
* src/check_run.c, tests/check_check_master.c: Changed timeout
error message according to sourceforge feature request #1121452.
2005-02-28 hugo303
* debian/files: Removed this auto generated file.
2005-02-28 hugo303
* rpm/check.spec.in: Added patch for x86_64 arch (fc3).
2005-02-28 hugo303
* tests/ex_xml_output.c, tests/ex_log_output.c, tests/ex_output.c,
src/check_log.c:
Fixed memory leaks.
2005-01-04 hugo303
* check.m4, config.h.in, configure.in, src/check_pack.c: Fixed
quoting and added configure test for stdint.h.
2005-01-04 hugo303
* tests/check_check_master.c: Made failure messages more helpful.
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
2004-11-12 hugo303
* debian/check.dirs, debian/control, debian/rules: Fixed building
with gcc3. Removed empty money dir from docs.
2004-11-10 hugo303
* Makefile.am, rpm/check.spec.in, rpm/Makefile.am: Fixed so
distributions build without trouble.
2004-11-09 hugo303
* src/check_run.c, tests/check_check_master.c: Use strsignal
to print describing text for signals.
2004-11-09 hugo303
* doc/tutorial.sgml: Documented signals handling and timeouts.
2004-11-09 hugo303
* tests/check_check_master.c src/check.h.in:
Changed failure message for fail_if.
2004-11-09 hugo303
* src/check.c, src/check.h.in, src/check_impl.h, src/check_run.c,
tests/check_check_master.c, tests/check_check_sub.c:
Added support for timeouts on tests, enabling detection of
eternal loops as errors.
2004-11-08 hugo303
* src/check.c, src/check.h.in, src/check_impl.h, src/check_run.c,
tests/check_check_master.c, tests/check_check_sub.c:
Added support for testing on expected signals. Implementation
courtesy of Lucas Di Pentima and Cesar Ballardini. Also cleaned
up the test verification to simplify merging of new tests.
2004-11-04 hugo303
* src/check.c, src/check_list.c, src/check_list.h, src/check_log.c,
src/check_msg.c, tests/check_list.c:
Changed name on function list_create to check_list_create to avoid
name clash.
2004-11-04 hugo303
* src/check.c, src/check.h.in, tests/check_check_master.c,
tests/check_check_sub.c: Applied ANSI C99 patch (#1047014)
2004-08-20 hugo303
* doc/tutorial.sgml: Updated with new features.
2004-08-18 hugo303
* src/check.c, src/check.h.in, src/check_impl.h, src/check_log.c,
src/check_log.h, src/check_print.c, src/check_print.h,
src/check_run.c, tests/Makefile.am, tests/check_check_log.c,
tests/ex_xml_output.c, tests/test_xml_output.sh:
Added support for XML output of the test results, courtesy of
Frederic Peters.
2004-08-18 hugo303
* src/check_run.c, tests/check_check_fixture.c: Fixed setup bug
from forum, failure in setup did not abort test in nofork mode.
Added test cases for bug.
2004-08-17 hugo303
* src/check_pack.c: Use stdint.h for specific sized type.
* src/check.c, src/check.h.in, tests/check_check_master.c,
tests/check_check_sub.c, ChangeLog
Applied varargs patch (#933411) and added test cases.
* src/check.h.in tests/check_check_master.c tests/check_check_sub.c:
Applied fail_if (#709167) patch.
2004-08-16 hugo303
* doc/tutorial.sgml: Applied 'newbies' patch #995028 for autoconf doc.
* rpm/check.spec.in: Applied doc patch #995028 from Bill Barnard.
2004-06-04 hugo303
* tests/: test_log_output.sh test_output.sh: Fixed portability
problem by changing == to =.
2004-05-26 hugo303
* rpm/check.spec.in: Changed copyright.
2004-05-25 hugo303
* src/check_run.c: Applied patch 796705. Replacing _exit with exit.
2004-05-25 hugo303
* src/check.c tests/check_check_master.c tests/check_check_sub.c:
Applied patch for bug 793671.
2004-05-17 10:44 hugo303
* Released 0.9.0. See NEWS file for changes.
2002-10-16 13:47 neo23
* AUTHORS, ChangeLog, configure.in: Bumped version number to 0.8.4.
Updated AUTHORS and ChangeLog.
2002-10-16 13:39 neo23
* src/check_msg.c, tests/check_check_msg.c: Applied a patch from
Rick Poyner that changes the pipe used for IPC to use a temporary
file instead of stdin/stdout. This fixes the long-standing problem
that the pipe used to fill up when too many fail_unless() were
used. (#482012).
2002-10-09 18:57 neo23
* src/check.h.in: Applied a patch from Rick Poyner that fixes a
typo which broke check for C++ compilers (bug #601397).
2002-08-16 19:41 neo23
* src/: check.c, check_msg.c, check_msg.h, check_pack.c,
check_pack.h: Applied a patch from Dietmar Petras <dpetras@gmx.de>
that plugs some memory leaks.
2002-07-10 04:37 neo23
* .cvsignore, autogen.sh: Call aclocal from autogen.sh.
2002-07-10 04:32 neo23
* aclocal.m4, depcomp, install-sh, missing, mkinstalldirs: Removed
files generated by automake.
2002-06-16 14:25 neo23
* debian/changelog: applied patch from Arien Malec to fix build of
Debian packages
2002-05-24 17:04 neo23
* ChangeLog: Made 0.8.3 Release.
2002-05-24 17:00 neo23
* NEWS, doc/tutorial.lyx, rpm/check.spec.in: Added check.m4 to the
spec file. Updated NEWS. Updated the date of the tutorial.
2002-05-24 16:35 neo23
* debian/: check.dirs, check.files, control: Added check.m4 to
debian rules. Changed the maintainer entry.
2002-05-23 17:08 neo23
* doc/tutorial.lyx: Mention that EXIT_SUCCESS and EXIT_FAILURE are
defined in stdlib.h. Suggested by Russell Reed in bug #547129.
2002-05-10 14:01 neo23
* src/check_msg.c: Declared local functions static (based on a
patch from Gilgamesh Nootebos).
2002-05-03 13:58 neo23
* src/Makefile.am, src/check.c, src/check_error.c,
src/check_list.c, src/check_list.h, src/check_log.c,
src/check_msg.c, src/check_pack.c, src/check_print.c,
src/check_run.c, src/check_str.c, src/list.c, src/list.h,
tests/check_list.c: Renamed list.[ch] to check_list.[ch] for
consistency. Include config.h from all over the place, cleaned up
includes.
2002-05-02 10:34 neo23
* src/check_pack.c, tests/check_check_log.c: Removed compiler
warnings mentioned in bug #547126.
2002-05-02 10:27 neo23
* src/check_print.c, tests/check_check_msg.c: Don't include
"error.h" (bug #546175 small cygwin portability problem).
2002-04-16 19:33 neo23
* doc/tutorial.lyx: Changed date to that of the latest release.
Added a name to an internal reference so that we get a working link
in the generated HTML.
2002-04-15 18:47 neo23
* check.m4, configure.in: Fixed check.m4 so that --without-check is
a valid option to disable check. Bumped version number to 0.8.3.
2002-04-15 12:58 neo23
* ChangeLog: Updated ChangeLog.
2002-04-15 12:57 neo23
* NEWS, README: Made 0.8.2 Release.
2002-04-14 18:59 neo23
* src/check_msg.c: Applied a patch from Arien that makes the pipe
nonblocking. This doesn't solve #482012 but makes it more obvious
what is going wrong if the pipe fills up.
2002-04-12 12:50 neo23
* doc/tutorial.lyx: Use #include rather than #import (bug #484564).
2002-04-12 12:34 neo23
* ChangeLog: Updated ChangeLog.
2002-04-12 12:33 neo23
* AUTHORS, doc/tutorial.lyx: Document the fact that you can now use
NULL as msg argument for fail_unless().
2002-04-12 11:54 neo23
* config.h.in, configure.in, src/Makefile.am, src/check.c,
src/check_impl.h, src/check_magic.h, src/check_msg.c,
src/check_pack.c, src/check_pack.h, src/check_run.c,
src/check_str.c, src/check_str.h, tests/Makefile.am,
tests/check_check_fixture.c, tests/check_check_master.c,
tests/check_check_msg.c, tests/check_check_pack.c: Removed
limitations on line number, message and buffer sizes (bug #478233)
by changing the way we send integers over the pipe. Instead of
strings, integers are now send as 4 bytes. This allows the pack
routine to easily calculate the message size so that we can
allocate the needed buffer there. Made a union out of the
different Msg structs to clean up the internal API. Also introduced
the internal function ck_strdup_printf(), a simple wrapper around
sprintf() that allocates enough space to hold the resulting string.
2002-04-10 13:11 neo23
* AUTHORS, NEWS, configure.in, src/check.c, src/check.h.in,
src/check_error.c, src/check_error.h, src/check_impl.h,
src/check_log.c, src/check_msg.c, src/check_msg.h,
src/check_pack.c, src/check_run.c, src/check_str.c, src/list.c,
src/list.h, tests/check_check_fixture.c, tests/check_check_fork.c,
tests/check_check_master.c, tests/check_check_pack.c,
tests/check_list.c: Applied a slightly modified version of a patch
from Neil Spring <nspring@cs.washington.edu> that declares strings
as const where applicable. It also changes our CFLAGS to be much
stricter and removes the warnings introduced by -Wwrite-strings.
This allows building other check tests with -Wwrite-strings without
heaping gobs of compiler warnings.
2002-03-28 20:12 neo23
* ChangeLog: Updated ChangeLog.
2002-03-28 19:37 neo23
* src/check.c, src/check.h.in, tests/check_check_master.c,
tests/check_check_sub.c: Allow fail_unless() to be called with a
NULL msg and substitute a reasonable error message in that case.
Bail out if NULL is passed to _fail_unless() to avoid possible
confusion.
Added a test case that calls fail_unless() with msg=NULL.
2002-03-28 19:19 neo23
* Makefile.am, README, autogen.sh, check.m4, configure.in,
doc/tutorial.lyx, doc/money/.cvsignore,
doc/money/Makefile.am.money, doc/money/aclocal.m4,
doc/money/configure.in.money, rpm/.cvsignore, rpm/Makefile.am,
rpm/check.spec, rpm/check.spec.in, src/.cvsignore, src/Makefile.am,
src/check.c, src/check.h, src/check.h.in, tests/.cvsignore: Changed
autogen.sh to bail out if necessary tools can't be found instead of
proceeding to the version checks.
Document use of autogen.sh in README.
Generate check.spec from check.spec.in to it automatically gets the
correct version number.
Generate check.h from chech.h.in and include Check version
information.
Compile Check version number into the library to allow for runtime
version checks.
Added the m4 script check.m4 that allows to easily integrate Check
into projects using autoconf/automake. It does version checking and
also assures that header and library versions match.
Document the use of check.m4 and the AM_PATH_CHECK() macro in the
tutorial. Adapted example Makefile.am and configure.in and added a
missing .cvsignore file.
2002-03-27 02:21 amalec
* src/Makefile.in, tests/Makefile.in: Complete CVS cleanup
2002-03-27 02:18 amalec
* .cvsignore, Makefile.am, Makefile.in, autogen.sh, configure,
debian/.cvsignore, debian/Makefile.in, doc/.cvsignore,
doc/Makefile.in, doc/money/Makefile.in, rpm/.cvsignore,
rpm/Makefile.in, src/.cvsignore, tests/.cvsignore: Cleaned up CVS
to remove all autofoo generated files, included an autogen.sh
bootstrap file. Changes at the suggestion of Sven Neumann
2002-03-02 02:42 amalec
* ChangeLog: Update ChangeLog
2002-03-02 02:42 amalec
* debian/changelog, debian/files, rpm/check.spec, src/Makefile.am,
src/Makefile.in, src/check.c, src/check_error.c, src/check_error.h,
src/check_log.c, src/check_msg.c, src/check_pack.c,
src/check_run.c, src/check_str.c, src/error.c, src/error.h,
src/list.c, tests/check_check_fixture.c, tests/check_check_pack.c:
Moved error.[hc] to check_error.[hc], and fixed bug in running
checked setup in nofork mode.
* COPYING, configure, configure.in, src/check.c, src/check.h,
src/check_impl.h, src/check_log.c, src/check_log.h,
src/check_magic.h, src/check_msg.c, src/check_msg.h,
src/check_pack.c, src/check_pack.h, src/check_print.c,
src/check_print.h, src/check_run.c, src/check_str.c,
src/check_str.h, src/error.c, src/error.h, src/list.c, src/list.h:
Changed license to LGPL
* ChangeLog: Update ChangeLog
* AUTHORS: Update AUTHORS to give credit to key contributors
* configure, configure.in: Clarified configuration warning on doc
building
* ChangeLog: Updating ChangeLog prior to release
* src/check_run.c, tests/check_check_pack.c: Fixed some missing
header includes
* src/check_pack.c: Fix packing of NULL strings (causing problems
under Solaris)
* tests/check_check_pack.c: Minor change to pack tests to ensure
that tests don't pass accidentally
* ChangeLog: Updated ChangeLog
* depcomp: Added new automake file
* NEWS, doc/index.html, doc/money/check_money.c,
tests/check_check_sub.c: Added comments on string functions to
NEWS, cleaned up money example, and fixed a signal unit test so
that it will pass under cygwin
* Makefile.in, NEWS, aclocal.m4, configure, debian/Makefile.in,
debian/changelog, debian/files, doc/Makefile.am, doc/Makefile.in,
doc/tutorial.lyx, doc/money/Makefile.in, rpm/Makefile.in,
rpm/check.spec, src/Makefile.am, src/Makefile.in, src/check.h,
src/check_log.c, src/check_msg.c, src/check_msg.h,
src/check_print.c, src/check_run.c, tests/Makefile.am,
tests/Makefile.in, tests/check_check_fixture.c,
tests/check_check_fork.c, tests/check_check_limit.c,
tests/check_check_main.c, tests/check_check_master.c,
tests/check_stress.c, tests/ex_log_output.c, tests/ex_output.c,
tests/test_log_output.sh, tests/test_output.sh: Documentation
updates
* src/check_msg.c, src/check_pack.c, src/check_pack.h,
tests/check_check_pack.c: Removed old ppunpack, renamed new_*, and
updated callers
* src/check_msg.c, src/check_msg.h, src/check_pack.c,
src/check_run.c, tests/check_check_master.c,
tests/check_check_msg.c, tests/check_check_pack.c: Moved Check to
use new internal ppack routine, and fixed a nasty bug
* src/check_msg.c, src/check_msg.h, src/check_pack.c,
tests/check_check_msg.c, tests/check_check_pack.c: New version of
receive_test_result passes unit tests
* src/check_pack.c, src/check_pack.h, tests/check_check_fixture.c,
tests/check_check_pack.c: Changed punpack to return test and
fixture locs to preserve test information when teardown messages
are sent
* src/check_run.c, tests/check_check_fixture.c: Checked setup
passes unit tests
* src/Makefile.am, src/Makefile.in, src/check.c, src/check_msg.c,
src/check_msg.h, src/check_run.c, tests/check_check_msg.c: Replace
previous messaging implementation files with new module
* src/check.c, src/check.h, src/check_log.c, src/check_msg.c,
src/check_pack.c, src/check_run.c, src/check_str.c, src/error.c,
src/error.h, tests/check_check_master.c, tests/test_log_output.sh,
tests/test_output.sh: Fully implemented new messaging back-end
based on pipes
* Makefile.in, aclocal.m4, configure, debian/Makefile.in,
doc/Makefile.in, doc/money/Makefile.in, rpm/Makefile.in,
src/Makefile.am, src/Makefile.in, src/check.c, src/check_impl.h,
src/check_pack.c, tests/Makefile.in, tests/check_check_msg.c,
tests/check_check_pack.c: Updated messaging tests to use new
infrastructure
* src/check.c, src/check.h, src/check_impl.h, src/check_pack.c,
src/check_pack.h, tests/check_check_pack.c: Completed
implementation of check_pack
* doc/index.html, doc/tutorial.lyx, src/Makefile.am,
src/Makefile.in, src/check.c, src/check.h, src/check_magic.h,
src/check_msg.h, src/check_pack.c, src/check_pack.h,
tests/Makefile.am, tests/Makefile.in, tests/check_check.h,
tests/check_check_fixture.c, tests/check_check_fork.c,
tests/check_check_limit.c, tests/check_check_main.c,
tests/check_check_master.c, tests/check_check_msg.c,
tests/check_check_pack.c: First generation packing code as the
infrastructure to revising message passing between processes, to
accomodate context messages
* src/check.c, src/check.h, src/check_impl.h, src/check_run.c,
src/list.c, src/list.h, tests/check_check_fixture.c,
tests/check_check_fork.c, tests/check_check_limit.c,
tests/check_check_master.c, tests/check_check_msg.c: Added
framework for support of checked fixture functions
* src/: check.c, check_run.c: Refactored failure info functions
* src/check.c, src/check.h, src/check_impl.h, src/check_magic.h,
src/check_msg.c, src/check_msg.h, src/check_print.c,
src/check_run.c, src/check_str.c, tests/Makefile.am,
tests/Makefile.in, tests/check_check.h,
tests/check_check_fixture.c, tests/check_check_main.c,
tests/check_check_master.c: Setup failure is working and partially
tested
* tests/: check_check.h, check_check_fork.c, check_check_main.c:
Completed implementation of CK_NOFORK
* src/: check_impl.h, check_msg.c, check_msg.h, check_run.c:
Implemented nofork mode
* Doxyfile, configure.in, src/check.h, src/check_impl.h,
src/check_log.c, src/check_log.h, src/check_print.c,
src/check_print.h, src/check_run.c, tests/Makefile.am,
tests/Makefile.in, tests/check_check.h, tests/check_check_main.c:
Added initial control functions to control forking
* src/check.c, src/check_msg.c, src/check_msg.h, src/check_run.c,
tests/check_check_msg.c: Completely abstracted the details of
messaging behind check_msg.c
* src/: check.c, check_msg.c, check_msg.h, check_run.c: Ensure that
each subprocesses alloc the correct msg queue
* src/check.c, src/check.h, src/check_msg.c, src/check_msg.h,
src/check_run.c, tests/check_check_msg.c: Eliminated passing of
msqid in unit tests
* src/check_print.c, src/check_str.c, tests/check_check_limit.c:
Added test checking running empty suites
* src/check_magic.h: Moved magic values to separate header
* src/Makefile.am, src/Makefile.in, src/check.h, src/check_impl.h,
src/check_print.c, src/check_str.c, src/check_str.h,
tests/check_check_master.c, tests/check_check_msg.c: Separated
printing from string formating functions to allow better testing.
* configure, configure.in, src/check_msg.c, src/check_msg.h,
src/check_run.c, tests/Makefile.am, tests/Makefile.in,
tests/check_check.h, tests/check_check_main.c,
tests/check_check_msg.c: Use pid/ppid as message queue key,
preliminary to removing _msqid from unit test functions
* ChangeLog: Final ChangeLog for 0.7.3 release
* NEWS: Document 0.7.3 in NEWS
* debian/changelog: This time, fix debian changelog correctly
* debian/changelog: Fixed maintainer email in debian changelog
* ChangeLog, acinclude.m4, aclocal.m4, configure, configure.in,
debian/changelog, debian/check.doc-base.tut, debian/files,
rpm/check.spec: Updated acinclude.m4 to increase portability; fixed
a minor packaging bug in debian doc-base files
* ChangeLog, doc/index.html: index.html changes
* INSTALL, NEWS: NEWS and INSTALL changes
* Doxyfile, configure, configure.in,
debian/check.postinst.debhelper, debian/check.prerm.debhelper,
debian/files, doc/Makefile.in, doc/tutorial.lyx, rpm/Makefile.am,
rpm/Makefile.in, rpm/check.spec, src/check.c, src/check.h,
src/check_log.c, src/check_msg.c, src/check_print.c,
src/check_run.c, tests/check_check_log.c,
tests/check_check_master.c, tests/check_check_msg.c,
tests/check_list.c, tests/check_stress.c, tests/ex_log_output.c,
tests/ex_output.c: Bug fixes and assorted cleanup prior to release
* doc/money/: Makefile.am, Makefile.in: Added money example
Makefiles to CVS
* doc/: Makefile.am, example.lyx, tutorial.lyx: Moved example.lyx
to tutorial.lyx
* acinclude.m4, debian/Makefile.am, debian/Makefile.in,
debian/check.docs: Added leftover stuff in debian directory,
acinclude.m4
* Makefile.am, Makefile.in, aclocal.m4, configure, configure.in,
debian/check.doc-base.tut, debian/control, debian/docs,
doc/Makefile.am, doc/Makefile.in, doc/money/AUTHORS,
doc/money/COPYING, doc/money/ChangeLog, doc/money/INSTALL,
doc/money/Makefile.am, doc/money/Makefile.am.money,
doc/money/Makefile.in, doc/money/NEWS, doc/money/README,
doc/money/config.h.in, doc/money/configure, doc/money/configure.in,
doc/money/configure.in.money, doc/money/stamp-h.in,
rpm/Makefile.in, rpm/check.spec, src/Makefile.in,
tests/Makefile.in: Added configure check for Lyx with Linuxdoc
* rpm/Makefile.in: Added rpm/Makefile.in
* Makefile.am, Makefile.in, configure, configure.in,
debian/changelog, debian/check.dirs, debian/check.files,
debian/rules, doc/Makefile.am, doc/Makefile.in, doc/index.html,
doc/money/AUTHORS, doc/money/COPYING, doc/money/ChangeLog,
doc/money/NEWS, doc/money/README, rpm/check.spec: Can now build
complete debs
* debian/README.Debian: Don't need README.Debian
* debian/README.Debian, debian/changelog, debian/check.dirs,
debian/check.files, debian/check.postinst.debhelper,
debian/check.prerm.debhelper, debian/control, debian/copyright,
debian/dirs, debian/docs, debian/files, debian/rules,
doc/Makefile.am, doc/index.html: Added preliminary debian packaging
files
* Makefile.am, Makefile.in, aclocal.m4, configure, configure.in,
doc/index.html, rpm/Makefile.am, rpm/buildrpm.sh: Added automatic
building of RPMs
* doc/index.html: Update index.html for final release to main Check
website.
* ChangeLog: Update ChangeLog
* NEWS, configure, configure.in, doc/example.lyx, rpm/buildrpm.sh,
rpm/check.spec, tests/Makefile.am, tests/Makefile.in,
tests/ex_log_output.c, tests/test_log_output.sh: Update NEWS, docs,
and rpm building
* ChangeLog: Update ChangeLog
* doc/Makefile.in, tests/ex_log_output.c: Add neglected files
* src/Makefile.am, src/Makefile.in, src/check_impl.h,
src/check_log.c, src/check_log.h, src/check_print.c,
src/check_print.h, src/check_run.c, tests/test_log_output.sh:
Reorganized printing and logging functions and implemented more
sophisticated logging
* Makefile.in, aclocal.m4, config.h.in, configure,
doc/money/aclocal.m4, doc/money/config.h.in, doc/money/configure,
src/Makefile.in, tests/Makefile.in, tests/test_log_output.sh: Added
log tests
* NEWS, README, doc/example.lyx, rpm/check.spec, src/check.h,
tests/check_check_log.c, tests/check_check_main.c: Updated docs
* ChangeLog: Update ChangeLog
* src/Makefile.in, src/check_log.c, tests/check_check.h,
tests/check_check_log.c, tests/check_check_master.c,
tests/check_check_sub.c, tests/test_output.sh: Completed testing
for multiple suite running, and reorganized files
* src/: check_log.c, check_log.h: Commit file changes
* src/: Makefile.am, check.h, check_run.c: Moved check_log.h
functions into check.h
* ChangeLog: Commit ChangeLog
* src/check.c, src/check.h, src/check_impl.h, src/check_run.c,
src/list.h, tests/Makefile.am, tests/Makefile.in,
tests/check_check.h, tests/check_check_log.c,
tests/check_check_main.c, tests/check_check_master.c,
tests/check_check_msg.c, tests/check_check_sub.c,
tests/check_list.c: Completed test for initial logging feature, and
added feature to run multiple suites through an SRunner
* src/Makefile.in, src/check.h, src/check_impl.h, src/check_log.h,
src/check_run.c, tests/check_check_log.c, tests/test_output.sh:
Restructured printing to allow for logging function
* src/: Makefile.am, Makefile.in: Add check_log.c to Makefile.am
* tests/: Makefile.am, Makefile.in: Complete move of
check_check_log.c -- this time for real...
* Doxyfile, src/check_log.h, tests/Makefile.am, tests/Makefile.in:
Complete move of check_check_log.c
* tests/: Makefile.am, check_check_log.c, check_log.c: Moved
check_log.c to check_check_log.c
* doc/money/stamp-h: Removed stamp-h
* src/check_log.h, tests/check_log.c: Added skeleton files for
check logging
* Doxyfile, configure, configure.in, src/check.h,
tests/Makefile.am, tests/Makefile.in: Additional doxygenation of
check.h
* ChangeLog: Updated ChangeLog
* configure, rpm/check.spec: Updated check.spec
* ChangeLog: Update ChangeLog
* NEWS, configure.in, doc/example.lyx, doc/money/check_money.c,
doc/money/configure, doc/money/configure.in, src/check.h,
src/check_run.c, tests/check_check_main.c,