aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authoraqua <aqua@iserlohn-fortress.net>2023-03-12 21:16:21 +0200
committeraqua <aqua@iserlohn-fortress.net>2023-03-12 21:16:21 +0200
commit30fd1dcbe128778d00b6677a3dc00c119c000e83 (patch)
tree76ee3d0843018e9fdbc5b6c1f7e2c5ca74997abd /Makefile
parentsrc/Makefile: generate conf.h if it doesn't exist (diff)
downloadkernel-30fd1dcbe128778d00b6677a3dc00c119c000e83.tar.xz
Add scripts/test_runner.py
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 6 insertions, 12 deletions
diff --git a/Makefile b/Makefile
index 34d166a..4f9bda5 100644
--- a/Makefile
+++ b/Makefile
@@ -40,20 +40,14 @@ clean:
@${MAKE} -C src clean
test:
- @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
+ @make -C ${ARCH} test.quiet
+ @make -C lib test.quiet
+ @make -C src test.quiet
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"
- @make -C src valgrind &> /dev/null
+ @make -C ${ARCH} valgrind.quiet
+ @make -C lib valgrind.quiet
+ @make -C src valgrind.quiet
# configure targets
.config: Kconfig