aboutsummaryrefslogtreecommitdiff
path: root/lib/Makefile
diff options
context:
space:
mode:
authoraqua <aqua@iserlohn-fortress.net>2022-11-06 14:48:41 +0200
committeraqua <aqua@iserlohn-fortress.net>2022-11-06 15:03:06 +0200
commit6d53f16aa508c445309aa4ebe965baa9e17401a1 (patch)
treebf42dc7dc1105d819a83c1e5a8c8595df19401b6 /lib/Makefile
parentlib/malloc: add linked list implementation (diff)
downloadkernel-6d53f16aa508c445309aa4ebe965baa9e17401a1.tar.xz
lib: migrate tests to gtest
Diffstat (limited to 'lib/Makefile')
-rw-r--r--lib/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/Makefile b/lib/Makefile
index 042eccc..dec0769 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -7,5 +7,6 @@ libk.SRCS = memcpy.c memset.c stdio/printf.c string/itoa.c
include ../rules.mk
.PHONY: test
-test: tst/test_linked_list_allocator
- @$(foreach f,$^,./$f)
+test: tst/test_mem tst/test_string tst/test_linked_list_allocator
+ @echo $^
+ $(foreach f,$^,./$f;)