* CMake on MinGW and MSVC was unable to find time related types because
time.h was not included. This header is now included for the checks.
Patch #53.
* If the test runner process catches a SIGTERM or SIGINT signal the running
tests are now also killed.
Patch #52.
* If Check is compiled without support for fork(), the behavior of
functions which require fork() to be useful have been changed.
Functions that attempt to set CK_FORK mode are no-ops,
check_fork() returns in failure, and check_waitpid_and_exit()
exits in failure.
* Add space around operators in assert messages for readability.
Bug #102.
* Use mkstemp() if available instead of tmpfile() or tempnam().
Patch #51.
* Fix issue with string formatting in ck_assert(), where using
the % operator would be interpreted as a string formatter. Bug #96.
* In nofork mode, the location of a failed assertion within a test
case was lost if that test case has a checked teardown fixture
(even if that fixture function is empty). This is now fixed.
Bug #99
Issues found with existing distfiles:
distfiles/eclipse-sourceBuild-srcIncluded-3.0.1.zip
distfiles/fortran-utils-1.1.tar.gz
distfiles/ivykis-0.39.tar.gz
distfiles/enum-1.11.tar.gz
distfiles/pvs-3.2-libraries.tgz
distfiles/pvs-3.2-linux.tgz
distfiles/pvs-3.2-solaris.tgz
distfiles/pvs-3.2-system.tgz
No changes made to these distinfo files.
Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden). All existing
SHA1 digests retained for now as an audit trail.
-----------------------
Sat July 26, 2014: Released Check 0.9.14
based on r1174 (2014-07-03 18:43:49 +0000)
* Changes to (unofficially for now) support Solaris and AIX platforms.
* Fix issue with checked teardown functions in CK_NOFORK mode. If
the teardown function called an assertion that failed, an
infinate loop would result. Bug#98. As a result of the change, for now
checked teardown functions that fail in CK_NOFORK mode will
not cause the test to fail.
* Allow checked fixtures when compiled without fork(). Previously
such setup/teardown functions were disabled, as the full contract
for checked fixtures could not be honored. Checked fixtures
in CK_NOFORK mode are now closer to the contract, and are now
enabled.
* Various code cleanup, including changes for compiling Check on
c++ compilers Clang and g++ (which are less forgiving than their
c counterparts).
* Re-enable internal unit tests, which verify which line numbers are
reported for unit test failures. (The tests were unintentionally
disabled in a previous release).
Fri May 30, 2014: Released Check 0.9.13
based on r1137 (2014-05-26 21:03:09 +0000)
* When a test assertion fails, exit() was invoked. This results in any
registered exit handlers being invoked. A test should not be relied
upon to clean up if it fails. Instead, _exit() will be used to signal
a test failure, to prevent exit handlers from being invoked.
* Fix issue with string formatting in ck_assert_(u)int_* calls, where using
the % operator would be interpreted as a string formatter. Bug #96.
* If the LOG/XML/TAP file name is set to "-" either through the
srunner_set_log() srunner_set_xml() or srunner_set_tap() calls
or through the related environment variables, the logged data will be
printed to stdout instead of a file. This is mainly to support using TAP
for fixtures which expect the results to be reported via stdout. However,
it is available via all of Check's logging modalities.
* For CMake builds, check_stdint.h was not being installed. This is now
fixed.
* Check's example under doc/example now also works for CMake projects
using Visual Studios and MSVC. This includes an example CMake
configuration.
Mon Jan 20, 2014: Released Check 0.9.12
based on r1054 (2014-01-16 23:08:03 +0000)
* Additional unit tests created for internal and external Check
APIs.
* Check now compiled on Windows using MSVC when using CMake and
NMake. All unit tests pass, though shell script based ones need
to be run in the MSYS environment.
* Check now compiles on Windows using Visual Studio 10
when using CMake. check_check passes when run from Visual Studios.
* Always capture the start and end times of tests when using
NO_FORK mode. Previously the end time was not captured,
resulting in arbitrary durations being recorded when tests
failed. Bug #87.
* Added additional configure script checks for support of
timer_create() on the target system. This allows for
OpenBSD to compile and run all Check's unit tests successfully.
* Added a unit test, check_mem_leaks, which can be used against
valgrind to test for memory leaks. No memory leaks were found.
* Added tcase_add_loop_test support in checkm. Patch from patches #46.
* Add support for logging in Test Anything Protocol (TAP) format.
* Refactor Check's assertions to be more like the assert() call in
assert.h, in that static source code analyzers can use gcc attributes
in the header to make assumptions about the flow of the code. See
feature request #29.
* fix ck_assert_ptr_* causing const compilation warnings. Patch from
bug #91.
Wed, Nov 4, 2013: Released Check 0.9.11
based on r856 (2013-11-04 02:09:21 +0000)
* Check's unit tests pass when compiled out of the source tree.
* Check compiles for Windows using the MinGW/msys environment (without using fork), and all unit tests pass.
* Check compiles for Windows using the Cygwin environment, and all unit tests pass.
* Check compiles for Windows using MinGW in Linux (without using fork), and all unit tests pass using wine 1.4.
* Check compiles for Windows using MinGW-w64 in Linux (without using fork), and all unit tests pass using wine 1.4.
* On systems without timer_settimer, use setitimer (if available) to get
subsecond unit test timeouts. If setitimer is unavailable, fallback
on alarm.
Thu, Apr 18, 2013: Released Check 0.9.10
based on r743 (2013-04-18 11:27:03 +0200)
* Support 64bit int for __ck_assert_int. Patch from bug #3599471
* Add equivalent uint variants for __ck_assert_int. Patch from bug #3600433.
* Detect if the system has a C99 compliant version of the printf related
functions for check to use, and if not use an implementation provided by
check.
* Updated HACKING and release procedure in Makefile.am.
* Detect if the system has clock_gettime() available, and if not use an
implementation provided by check. clock_gettime() is used to measure
test durations. The implementation for OSX uses OSX specific system calls
to get the time. For all other systems, clock_gettime() does nothing.
* Updated documentation in check.h to reference new check API.
* Remove usage of deprecated fail(), fail_if(), and fail_unless() calls from
check's unit tests.
* Fix implementation of putenv in check's libcompat for systems that do not
provide it.
* Fix implementation of unsettenv in check's libcompat for systems that do
not provide it.
* Improvements to the new Check API: new comparison functions for pointers:
ck_assert_ptr_(eq|ne).
* Test timeouts can now be in nanosecond precision. The tcase_set_timeout
call, and CK_DEFAULT_TIMEOUT and CK_TIMEOUT_MULTIPLIER environment
variables now can accept floating point arguments.
* Cleanup compile warnings, patch #3579199 on SF.
* Renamed Check's internal list functions to start with check_, patch #3448601 on SF.
Mon, Oct 22, 2012: Released Check 0.9.9
based on r637 (2012-10-22 13:54:14 +0200)
* Measure test duration and print in XML output.
Feature request #3521371 on SF, but reimplemented.
* Added contrib/XML_for_JUnit.xsl from feature request #3521371 on SF.
* Added support for setting log files via environment variables.
Patch #3576713 on SF.
* Added better pkg-config and subunit support, patch #3417041 on SF.
* Make tests/test_vars.in bourne shell compatible, bug #3472578 on SF.
* Added ck_ prefix to mutex_lock variable, to avoid name clash on Solaris.
Solves bug #3472574 on SF.
* In autoconf, request system extensions to generate 64-bit safe code,
solution from patch #2803433 on SF.
* Fix for mutex deadlock when killing threads, patch #3564640 on SF.
* Make XML output well-formed, solution from patch #3575642 on SF.
Solves bug #3485651 also.
* Fix buggy duration calculation, bug #3575451 on SF.
* A more complete CMake / MSVC patch for those interested in pursuing
Windows development with Check and Visual Studio. See
patches/mloskot.windows.patch.
* Added instructions for improving the speed and output of `make
check' when using Automake. See contrib/improved_make_check/.
* Added a chapter in the documentation for selective running of tests.
* Changed how the message pipe is read. Before, the whole file was copied to
RAM with realloc, giving problems with huge allocations for repetetive
tests, the problem was visible for a specific GStreamer test case.
* Improvements to the new Check API: documentation, macros that allow
multiple evaluation, unit tests, and new
ck_assert_(str|int)_(lt|le|gt|ge) comparison functions.
* Made the new Check API primary and use it to define macros from old Check API
* Added checkmk, a tool for reducing "boilerplate coding" when writing
unit tests with check.
* Added xslt link to xml output, added display of iteration field into xslt
stylesheet and moved it to directory accessible from web page root
* Added longjmp to fail function to ensure that no code will be executed in test
function after failed assertion
* Fix dead assignments and several possible NULL pointer dereferences
Based on PR#43757 by Kamel Derouiche.
Tue, Sep 22, 2009: Released Check 0.9.8
based on r559 (2009-09-23 21:00).
* Fix CHECK_MICRO_VERSION, left at 6 in 0.9.7 by mistake.
Tue, Sep 22, 2009: Released Check 0.9.7
based on r552 (2009-09-22 09:26).
* Added CK_SUBUNIT support for outputting test information in the subunit wire
protocol. See the check manual for more information. (Contributed by Robert
Collins).
* Added code and tests for timeout scaling via environment variable.
Feature requested in tracker item #1549835 on sourceforge.
* Added documentation for testing exit values with tcase_add_exit_test().
* Add make_macros perl script from somebody (who?)
* add type to check_type error message
* add contrib dir with xslt transform
* function exist testing support (patch #1726574).
* introduce HAVE_WORKING_SETENV to protect tc_timeout_env usage
* support running tests with multiple pthreads (Daniel Gollub, closes 1391527)
* partial MSYS/MinGW support
Mon, Dec 29, 2008: Released Check 0.9.6
based on r453 (2008-12-01 22:14:15).
* 'make distcheck' does not work out of the box. Disable the two
top lines in doc/Makefile.am and it shall pass. Will have to
be fixed later.
* add call to AC_REPLACE_FUNCS([strsignal])
* add new rpl_strsignal following rpl_(re)malloc template, body
of function due to Roland Illig
-- hopefully closes 1629755
* add missing NULL argument to fail* varargs macro calls
* define incorrect tests for __GNUC__ only
-- both per Roland Illig in bug 1677391
* define CK_ATTRIBUTE_UNUSED for GCC >= 2.95, closing:
[ 1674626 ] compile error with non defined __attribute__ compiler
* Fixed error in documentation example Makefile.am, bug #1888237
* Fixed spelling (patch #1652630)
* Handle NULL in srunner_add_suite(). Fixes#1624887
* add CK_FORK_GETENV to enum fork_status and delete CK_FORK_UNSPECIFIED
* call strdup on result from strsignal to avoid clobbering it
* add Torok Edwin to AUTHORS
* add CK_TEST_RESULT_INVALID to enum test_result
* add CK_CTX_INVALID to ck_result_ctx and don't use -1 anymore
* count checks in setup() as well; patch due to Roland Stigge
* use int __attribute__((unused)) _i instead of
int _i __attribute__((unused))
per gcc-3.3.5 request from Sebastian Trahm
* rename signal to _signal in _tcase_add_test to avoid a
symbol clash with /usr/include/sys/signal.h on OS X.
* define rpl_malloc and rpl_realloc for platforms where
!malloc(0) and !realloc(0,0), such as AIX, because configure
goes and redefines malloc/realloc in this case...
* SVNChangeLog patch from Robert Collins
* Incorporated patch from Debian for debian bug #395466. This fixes
'AM_PATH_CHECK causes "possibly undefined macro" errors'.
* Added new Check fail API. Implemented on top of fail_unless. Future
versions will reverse this so fail_unless is implemented on top of the
ck_assert API. This API is not documented yet, will probably not be fully
released until 0.9.8, when it will be possible to choose API.
This changes the buildlink3.mk files to use an include guard for the
recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS,
BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new
variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of
enter/exit marker, which can be used to reconstruct the tree and
to determine first level includes. Avoiding := for large variables
(BUILDLINK_ORDER) speeds up parse time as += has linear complexity.
The include guard reduces system time by avoiding reading files over and
over again. For complex packages this reduces both %user and %sys time to
half of the former time.
changes:
* Updated manual and converted from DocBook to Texinfo
* Added pkg-config support
* Added Libtool support
* Updated GNU Build System
-bugfixes
* Added a new kind of test, looping tests
* Added possibility to turn off timeout tests
developer is officially maintaining the package.
The rationale for changing this from "tech-pkg" to "pkgsrc-users" is
that it implies that any user can try to maintain the package (by
submitting patches to the mailing list). Since the folks most likely
to care about the package are the folks that want to use it or are
already using it, this would leverage the energy of users who aren't
developers.
+ * src/check.h.in: Added include of stddef.h for NULL definition
+ * doc/tutorial.sgml: Fixed sourceforge bug #1216502
+ 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.
+ * src/check.h.in: Fixed compatibility with gcc 2.95.3 according
+ to sourceforge patch #1161654.
+ * src/check_run.c, tests/check_check_master.c: Changed timeout
+ error message according to sourceforge feature request #1121452.
+ * tests/ex_xml_output.c, tests/ex_log_output.c, tests/ex_output.c,
+ src/check_log.c:
+ Fixed memory leaks.
+ * check.m4, config.h.in, configure.in, src/check_pack.c: Fixed
+ quoting and added configure test for stdint.h.
+ * src/check_run.c, tests/check_check_master.c: Use strsignal
+ to print describing text for signals.
+ * doc/tutorial.sgml: Documented signals handling and timeouts.
+ * tests/check_check_master.c src/check.h.in:
+ Changed failure message for fail_if.
+ * 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.
+ * 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.
+ * 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.
+ * src/check.c, src/check.h.in, tests/check_check_master.c,
+ tests/check_check_sub.c: Applied ANSI C99 patch (#1047014)
Fri, Sep 3, 2004: Released Check 0.9.1
Updated tutorial with new features.
Added support for XML output of the test results, courtesy of Frederic Peters.
Fixed setup bug from forum, failure in setup did not abort test in nofork mode.
Applied varargs patch (#933411) and added test cases.
Applied fail_if (#709167) patch.
Applied 'newbies' patch #995028 for autoconf doc.
Applied doc patch #995028 from Bill Barnard.
Fixed portability problems tests by changing == to =.
Changed copyright according to bug report.
Applied patch 796705. Replacing _exit with exit.
Applied patch for bug 793671.
Mon, May 17, 2004: Released Check 0.9.0
Run fixture teardowns in reverse order to setup
Plugged some memory leaks.
Added test name to log outputs.
Applied patch (802160) for distcheck bug (579604).
Fixed log printouts for nofork mode.
Updated documentation and converted to DocBook.
Added a new print mode, CK_ENV, that gets the print mode from the
environment variable CK_VERBOSITY.
Made tcase_free and suite_free static. This may break existing test
programs. Everything is now freed when srunner_free is called.