Update 0.9.10 to 0.9.14
----------------------- 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.
This commit is contained in:
parent
06bfbfd854
commit
6c3a555ca8
2 changed files with 6 additions and 6 deletions
|
@ -1,7 +1,7 @@
|
|||
# $NetBSD: Makefile,v 1.19 2013/10/03 14:48:07 taca Exp $
|
||||
# $NetBSD: Makefile,v 1.20 2014/12/12 07:38:43 mef Exp $
|
||||
#
|
||||
|
||||
DISTNAME= check-0.9.10
|
||||
DISTNAME= check-0.9.14
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=check/}
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.14 2013/10/03 14:48:07 taca Exp $
|
||||
$NetBSD: distinfo,v 1.15 2014/12/12 07:38:43 mef Exp $
|
||||
|
||||
SHA1 (check-0.9.10.tar.gz) = 56da5197bcff07d42da18f9ed1d55bff638a6896
|
||||
RMD160 (check-0.9.10.tar.gz) = 0e81979e59072c8b507a8754be61d18a1281d9c1
|
||||
Size (check-0.9.10.tar.gz) = 650135 bytes
|
||||
SHA1 (check-0.9.14.tar.gz) = 4b79e2d485d014ddb438e322b64235347d57b0ff
|
||||
RMD160 (check-0.9.14.tar.gz) = f2de6099d213e7dd9cd73ed42ad0a8dddc5881a7
|
||||
Size (check-0.9.14.tar.gz) = 758197 bytes
|
||||
|
|
Loading…
Reference in a new issue