From 787c1a6016dd2fdb51f20fcb5ca0ac5e461892d6 Mon Sep 17 00:00:00 2001 From: aqua Date: Sun, 5 Mar 2023 14:38:54 +0200 Subject: Move all tests next to the code they're testing --- Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 33b5f76..34d166a 100644 --- a/Makefile +++ b/Makefile @@ -40,12 +40,16 @@ clean: @${MAKE} -C src clean test: - @echo " -> Running tests in src" - @make -C src test > /dev/null + @echo " -> Running tests in ${ARCH}" + @make -C ${ARCH} test > /dev/null @echo " -> Running tests in lib" @make -C lib test > /dev/null + @echo " -> Running tests in src" + @make -C src test > /dev/null valgrind: + @echo " -> Running valgrind on tests in ${ARCH}" + @make -C ${ARCH} valgrind &> /dev/null @echo " -> Running valgrind on tests in lib" @make -C lib valgrind &> /dev/null @echo " -> Running valgrind on tests in src" -- cgit v1.2.1