From 6d53f16aa508c445309aa4ebe965baa9e17401a1 Mon Sep 17 00:00:00 2001 From: aqua Date: Sun, 6 Nov 2022 14:48:41 +0200 Subject: lib: migrate tests to gtest --- lib/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lib/Makefile') 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;) -- cgit v1.2.1