summaryrefslogtreecommitdiff
path: root/devel/cpputest
AgeCommit message (Collapse)AuthorFilesLines
2020-01-18all: migrate several HOMEPAGEs to httpsrillig1-2/+2
pkglint --only "https instead of http" -r -F With manual adjustments afterwards since pkglint 19.4.4 fixed a few indentations in unrelated lines. This mainly affects projects hosted at SourceForce, as well as freedesktop.org, CTAN and GNU.
2018-12-16#include <sys/types.h> for pid_t. Fixes FreeBSD build.schmonz2-4/+13
2018-06-22Expect pid_t from fork() and waitpid() to fix build on SmartOS. Quell pkglint.schmonz4-4/+40
2017-08-14Install MakefileWorker.mk. Bump PKGREVISION.schmonz2-2/+9
2016-06-11Define TEST_TARGET.schmonz1-4/+3
2016-06-07Update to 3.8. From the changelog:schmonz3-15/+14
This release contains many small new features, such as; - Comparing bits - Proper bool support - 16 bit support - 64 bit asserts - Floating point exception plugin - Configuration choices installed - Command line option to run ignored tests - Failable Memory Leak allocator - Many small bug fixes - Increased portability
2016-05-06Add CppUTest, a C/C++ based unit xUnit test framework for unit testingschmonz4-0/+97
and for test-driving your code. It is written in C++ but is used in C and C++ projects and frequently used in embedded systems but it works for any C/C++ project. CppUTest's core design principles are: - Simple in design and simple in use. - Portable to old and new platforms. - Build with Test-driven Development in mind. VS: ----------------------------------------------------------------------