summaryrefslogtreecommitdiff
path: root/devel/cpputest
AgeCommit message (Collapse)AuthorFilesLines
2021-10-26archivers: Replace RMD160 checksums with BLAKE2s checksumsnia1-2/+2
All checksums have been double-checked against existing RMD160 and SHA512 hashes Could not be committed due to merge conflict: devel/py-traitlets/distinfo The following distfiles were unfetchable (note: some may be only fetched conditionally): ./devel/pvs/distinfo pvs-3.2-solaris.tgz ./devel/eclipse/distinfo eclipse-sourceBuild-srcIncluded-3.0.1.zip
2021-10-07devel: Remove SHA1 hashes for distfilesnia1-2/+1
2020-07-07Update to 4.0. From the changelog:schmonz3-21/+22
New functionality: * Added MemoryAccountant * Added SimpleStringCache that also removed the memory leak caused by longjmp in C * Thread-safe memory leak detector overloads * New command-line options: * -h help option * -s shuffle (random) option * -t run a specific test option * -vv extra verbose option * -k add a package name to junit output * Added new asserts: CHECK_COMPARE, and improved C macros * Support for newer compilers and address sanitizer Small improvements: * Fixed problems with gdb * More 16-bit support * Added Makefile for making the examples with an installed CppUTest * Small mock improvements * Removed more compiler warnings * Support for C++14, C++17, and C++2x (added to automated build) Improved maintainability: * Docker builds * Vastly improved the automated build with more platforms and variants * Continuously releasing the passing build * MS-DOS support (added to automated build)
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: ----------------------------------------------------------------------