sheepy

build system (sheepy) and package manager (spm) for C
git clone https://spartatek.se/git/sheepy.git
Log | Files | Refs | README | LICENSE

commit 7f43c5cf1b15342685e9ebab55e7f75e9eff1c50
parent bd76fad142515c60e15141f4ea52da532907ab46
Author: Remy Noulin <loader2x@gmail.com>
Date:   Fri,  6 Sep 2019 15:04:58 +0200

add information about the tests

README.md | 12 +++++++++---
1 file changed, 9 insertions(+), 3 deletions(-)

Diffstat:
MREADME.md | 12+++++++++---
1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md @@ -272,14 +272,20 @@ sheepy -T Add the tests in test<Package name>.c -Run the tests: +__Run the tests__: -Unit tests: +- Unit tests: ``` spm test ``` -Memcheck: +Libcheck has to be available in the system since the unit tests are using it. + + +- Memcheck: ``` ./test<Package name>Mem.sh ``` + +In memcheck tests, the unit tests are linked to libsheepyMemcheck which has container recycling disabled to easily identify the source of the leaks. +Valgrind has to be available in the system.