diff options
author | taca <taca@pkgsrc.org> | 2013-10-03 14:48:07 +0000 |
---|---|---|
committer | taca <taca@pkgsrc.org> | 2013-10-03 14:48:07 +0000 |
commit | 7b24a1a883af23aa5763c2038168c537292f1b6e (patch) | |
tree | 05f9d8bf02a7fed991afaeccd57115fb04ef9722 /devel/check | |
parent | 69f383546a9c87e033fdeb174e44b08bde353140 (diff) | |
download | pkgsrc-7b24a1a883af23aa5763c2038168c537292f1b6e.tar.gz |
Update check to 0.9.10.
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.
Diffstat (limited to 'devel/check')
-rw-r--r-- | devel/check/Makefile | 4 | ||||
-rw-r--r-- | devel/check/PLIST | 3 | ||||
-rw-r--r-- | devel/check/distinfo | 8 |
3 files changed, 8 insertions, 7 deletions
diff --git a/devel/check/Makefile b/devel/check/Makefile index a72525e7cd9..bede4921775 100644 --- a/devel/check/Makefile +++ b/devel/check/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.18 2012/12/09 15:09:34 wiz Exp $ +# $NetBSD: Makefile,v 1.19 2013/10/03 14:48:07 taca Exp $ # -DISTNAME= check-0.9.9 +DISTNAME= check-0.9.10 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=check/} diff --git a/devel/check/PLIST b/devel/check/PLIST index 4a7d360b040..8253799748a 100644 --- a/devel/check/PLIST +++ b/devel/check/PLIST @@ -1,5 +1,6 @@ -@comment $NetBSD: PLIST,v 1.8 2012/12/09 15:09:34 wiz Exp $ +@comment $NetBSD: PLIST,v 1.9 2013/10/03 14:48:07 taca Exp $ include/check.h +include/check_stdint.h info/check.info lib/libcheck.la lib/pkgconfig/check.pc diff --git a/devel/check/distinfo b/devel/check/distinfo index b64e82bd979..cbcdde3be33 100644 --- a/devel/check/distinfo +++ b/devel/check/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.13 2012/12/09 15:09:34 wiz Exp $ +$NetBSD: distinfo,v 1.14 2013/10/03 14:48:07 taca Exp $ -SHA1 (check-0.9.9.tar.gz) = 96c06ff9971884628c2512f0e3bca6141c49290b -RMD160 (check-0.9.9.tar.gz) = 070ede33240443c45da7e7444e8ffed422df9dc4 -Size (check-0.9.9.tar.gz) = 602679 bytes +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 |