From c19ea75f10d6278569619f90977ce7c820e9319d Mon Sep 17 00:00:00 2001 From: NIIBE Yutaka Date: Fri, 16 Dec 2022 13:11:14 +0900 Subject: [PATCH] tests: Fix make check with GPGME. * tests/gpgme/Makefile.am: Create directories for logs. -- Signed-off-by: NIIBE Yutaka --- tests/gpgme/Makefile.am | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/gpgme/Makefile.am b/tests/gpgme/Makefile.am index fe3d58007..ca7be13df 100644 --- a/tests/gpgme/Makefile.am +++ b/tests/gpgme/Makefile.am @@ -47,6 +47,8 @@ check: xcheck .PHONY: xcheck xcheck: + @$(MKDIR_P) setup.scm/tests \ + tests/gpg lang/qt/tests lang/python/tests $(TESTS_ENVIRONMENT) $(abs_top_builddir)/tests/gpgscm/gpgscm$(EXEEXT) \ $(abs_srcdir)/run-tests.scm $(TESTFLAGS) $(TESTS) @@ -57,3 +59,6 @@ CLEANFILES = *.log report.xml # We need to depend on a couple of programs so that the tests don't # start before all programs are built. all-local: $(required_pgms) + +clean-local: + -rm -rf setup.scm/tests tests/gpg lang/qt/tests lang/python/tests