New in CppUnit 1.14.0: --------------------- - TestCaller supports any callable that can be put into std::function<void()>. - CPPUNIT_TEST_PARAMETERIZED executes a test for any value in an iteratable. - Added new Assertion macros: ASSERT_LESS, ASSERT_GREATER, ASSERT_LESSEQUAL, ASSERT_GREATEREQUAL * Portability: - Always build with C++11. - Always require RTTI support. - Removed support for compilers that don't support default template arguments with standard containers. - Removed portability headers for wrapper around standard containers. - Support C++11 enum class in asserter. * Test Plug-in Runner: - Fixed crash on Win64 in test runner (fdo#81433) * Removed features - QT test runner - msvc6 test runners - msvc6 plugin - BeOS support
21 lines
476 B
Makefile
21 lines
476 B
Makefile
# $NetBSD: Makefile,v 1.26 2017/04/19 12:20:08 wiz Exp $
|
|
|
|
DISTNAME= cppunit-1.14.0
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://dev-www.libreoffice.org/src/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.freedesktop.org/wiki/Software/cppunit
|
|
COMMENT= C++ unit testing framework
|
|
LICENSE= gnu-lgpl-v2.1
|
|
|
|
USE_LANGUAGES= c c++
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= gmake
|
|
GNU_CONFIGURE= yes
|
|
|
|
PKGCONFIG_OVERRIDE= cppunit.pc.in
|
|
|
|
.include "options.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|