Changelog for
check-0.9.10-2.6.i586.rpm :
Thu Apr 18 14:00:00 2013 dimstarAATTopensuse.org
- Update to version 0.9.10:
+ Support 64bit int for __ck_assert_int (sf#3599471).
+ Add equivalent uint variants for __ck_assert_int (sf #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.
+ mprovements to the new Check API: new comparison functions for
pointers: ck_assert_ptr_(eq|ne).
+ Test timeouts can now be in nanosecond precision.
+ Cleanup compile warnings (sf#3579199).
+ Renamed Check\'s internal list functions to start with check_
(sf#3448601).
Tue Oct 23 14:00:00 2012 dimstarAATTopensuse.org
- Update to version 0.9.9:
+ Measure test duration and print in XML output (sf#3521371)
+ Added contrib/XML_for_JUnit.xsl (sf#3521371)
+ Added support for setting log files via environment variables.
(sf#3576713)
+ Added better pkg-config and subunit support (sf#3417041)
+ Make tests/test_vars.in bourne shell compatible (sf#3472578)
+ Added ck_ prefix to mutex_lock variable, to avoid name clash on
Solaris (sf#3472574)
+ In autoconf, request system extensions to generate 64-bit safe
code (sf#2803433)
+ Fix for mutex deadlock when killing threads (sf#3564640)
+ Make XML output well-formed (sf#3575642, sf#3485651)
+ Fix buggy duration calculation (sf#3575451)
+ A more complete CMake / MSVC patch for those interested in
pursuing Windows development with Check and Visual Studio.
+ Added instructions for improving the speed and output of `make
check\' when using Automake.
+ 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.
Thu Dec 22 13:00:00 2011 dimstarAATTopensuse.org
- Own %{_datadir}/aclocal to fix build without automake/autoconf.
Sat Sep 17 14:00:00 2011 jengelhAATTmedozas.de
- Remove redundant tags/sections from specfile
- Use %_smp_mflags for parallel building
Sat Apr 24 14:00:00 2010 cooloAATTnovell.com
- buildrequire pkg-config to fix provides
Tue Feb 2 13:00:00 2010 puzelAATTnovell.com
- Add pkg-config Recommends to check-devel, as required by policy.
Sun Jan 31 13:00:00 2010 jengelhAATTmedozas.de
- Package baselibs.conf
Fri Nov 27 13:00:00 2009 dimstarAATTopensuse.org
- Update to version 0.9.8:
+ Added CK_SUBUNIT support for outputting test information in
the subunit wire protocol.
+ Added code and tests for timeout scaling via environment
variable
+ Added documentation for testing exit values with
tcase_add_exit_test()
+ Add make_macros perl script from somebody
+ add type to check_type error message
+ add contrib dir with xslt transform
+ function exist testing support
+ introduce HAVE_WORKING_SETENV to protect tc_timeout_env usage
+ support running tests with multiple pthreads
+ partial MSYS/MinGW support.
- spec file cleaned using spec-cleaner.
Sat Apr 18 14:00:00 2009 crrodriguezAATTsuse.de
- remove static libraries and \"la\" files
Thu Jan 1 13:00:00 2009 msumanAATTsuse.de
- Updated to version 0.9.6:
* add call to AC_REPLACE_FUNCS([strsignal])
* add CK_FORK_GETENV to enum fork_status and delete CK_FORK_UNSPECIFIED
* add CK_CTX_INVALID to ck_result_ctx and don\'t use -1 anymore
* 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...
* 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.
* More fixes and changes.