From 284f30607aaaab3a8ad502c557e31f7f5dbc0b64 Mon Sep 17 00:00:00 2001 From: Peter Jones Date: Mon, 2 Aug 2021 13:58:22 -0400 Subject: tests: clean up temp data after running tests This makes sure we clean up the builds that aren't for the EFI environment after we build and run the unit tests. Signed-off-by: Peter Jones --- include/test.mk | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'include') diff --git a/include/test.mk b/include/test.mk index b99283f3..c11d0c74 100644 --- a/include/test.mk +++ b/include/test.mk @@ -87,11 +87,14 @@ $(tests) :: test-% : test.c test-%.c $(test-%_FILES) $(VALGRIND) ./$@ test : $(tests) + $(MAKE) -f include/test.mk test-clean -clean : - @rm -vf test-random.h random.bin libefi-test.a +test-clean : + @rm -vf test-random.h random.bin libefi-test.a vgcore.* -all : clean test +clean : test-clean + +all : test-clean test .PHONY: $(tests) all test clean .SECONDARY: random.bin -- cgit v1.2.3