freebsd-ports/devel/libcheck/pkg-descr
Sean Chittenden 90862d3405 Update libcheck (C unit testing library) to 0.9.3. Port changes
include:

*) Update check.m4 to search for libraries and headers in /usr/local/*
   and $prefix/*.  Ports/programs that use libcheck now work with the
   configure arg `--with-check` without needing to specify the
   location as an argument.  Someone with more autofoo may want to
   review this.  Patch submitted upstream.
*) Removed incorporated patches.
*) Installing docs and examples in their proper location.
*) Removed a description of the benefits of unit testing in pkg-descr.
*) No longer installing COPYING.

Approved by:    mikeh (maintainer)
2006-07-05 18:30:08 +00:00

10 lines
350 B
Text

Check is a unit test framework for C. It features a simple interface
for defining unit tests, putting little in the way of the
developer. Tests are run in a separate address space, so Check can
catch both assertion failures and code errors that cause segmentation
faults or other signals.
WWW: http://check.sourceforge.net
- Mike
mikeh@FreeBSD.org