pkgsrc/devel/check/Makefile
schmonz cc9e3aedf6 Update to 0.10.0. From the changelog:
* 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
2016-06-17 02:25:47 +00:00

22 lines
469 B
Makefile

# $NetBSD: Makefile,v 1.21 2016/06/17 02:25:47 schmonz Exp $
#
DISTNAME= check-0.10.0
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=check/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://check.sourceforge.net/
COMMENT= Unit test framework for C
LICENSE= gnu-lgpl-v2.1
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
INFO_FILES= yes
PKGCONFIG_OVERRIDE= check.pc.in
TEST_TARGET= check
.include "../../mk/pthread.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"