]> granicus.if.org Git - check/commitdiff
* Merged release branch 0.9.6
authorhugo303 <hugo303@64e312b2-a51f-0410-8e61-82d0ca0eb02a>
Mon, 29 Dec 2008 15:46:39 +0000 (15:46 +0000)
committerhugo303 <hugo303@64e312b2-a51f-0410-8e61-82d0ca0eb02a>
Mon, 29 Dec 2008 15:46:39 +0000 (15:46 +0000)
    svn merge -r476:477 ../tags/check-0.9.6

git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@479 64e312b2-a51f-0410-8e61-82d0ca0eb02a

NEWS
TODO
configure.ac

diff --git a/NEWS b/NEWS
index bd638ef0e9cf56e65e8b1173cc0ea511db7603b8..f13c859506383594c200f932e8fd3f9cc638e909 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,60 @@
+Mon, Dec 29, 2009: 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.
+
 Tue, Nov 21, 2006: Released Check 0.9.5
 
 * Fixed code coverage support to work with gcc4 and buggy libtool.
diff --git a/TODO b/TODO
index b260f8dd23b16f77fc9f1b5b22eef8528f0c5bbc..9a3820e70bda384f925d4686c3858a3152bbf8da 100644 (file)
--- a/TODO
+++ b/TODO
@@ -48,7 +48,8 @@ Build issues:
 [0.9.4] * Make sure libcheck.(l)a works as a dependency, don't call $(MAKE)
 [0.9.4] * Build tests/ dirs after everything else
 [0.9.4] * Fix AM_PATH_CHECK by deprecating it; use pkg-config instead
-[     ] * make Check pass its own unit tests: make (dist)check can fail.
+[0.9.6] * make Check pass its own unit tests: make (dist)check can fail.
+[     ] * Make the docs pass 'make distcheck'
 [     ] * use stricter CFLAGS for compiling Check
 [     ] * use ax_cflags_gcc_option to add to CFLAGS to Check
 
index b61fa567b27315d170548879ac817d1b6a0a554b..364d4135178e991bd2e4156d90f22495706ca95a 100644 (file)
@@ -3,7 +3,7 @@
 
 # Prelude.
 AC_PREREQ([2.59])
-AC_INIT([Check], [0.9.5], [check-devel at lists dot sourceforge dot net])
+AC_INIT([Check], [0.9.6], [check-devel at lists dot sourceforge dot net])
 
 # unique source file --- primitive safety check 
 AC_CONFIG_SRCDIR([src/check.c])
@@ -27,7 +27,7 @@ AM_INIT_AUTOMAKE([-Wall -Werror gnits 1.9.6])
 
 CHECK_MAJOR_VERSION=0
 CHECK_MINOR_VERSION=9
-CHECK_MICRO_VERSION=5
+CHECK_MICRO_VERSION=6
 CHECK_VERSION=$CHECK_MAJOR_VERSION.$CHECK_MINOR_VERSION.$CHECK_MICRO_VERSION
 
 AC_SUBST(CHECK_MAJOR_VERSION)