diff options
author | aqua <aqua@iserlohn-fortress.net> | 2023-03-05 14:38:54 +0200 |
---|---|---|
committer | aqua <aqua@iserlohn-fortress.net> | 2023-03-05 14:38:54 +0200 |
commit | 787c1a6016dd2fdb51f20fcb5ca0ac5e461892d6 (patch) | |
tree | 7db9f5102adc3d50ca85a8175ce67465256b8908 /Makefile | |
parent | Add TARGETBIN and TARGETLIB rules (diff) | |
download | kernel-787c1a6016dd2fdb51f20fcb5ca0ac5e461892d6.tar.xz |
Move all tests next to the code they're testing
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -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" |