From 6ecd8b3e71632bbcca524ad735c83bdc2a4c4a4a Mon Sep 17 00:00:00 2001 From: Justus Winter Date: Wed, 25 Jan 2017 11:16:23 +0100 Subject: [PATCH] tests,w32: Fix locating GPGME's tests on Windows. * tests/gpgme/run-tests.scm: Qualify the test with the executable extension. -- Previously, the test suite could not locate the test executables on Windows because the Windows-specific file extension was missing. Signed-off-by: Justus Winter --- tests/gpgme/run-tests.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/gpgme/run-tests.scm b/tests/gpgme/run-tests.scm index bce55848b..cb17977cb 100644 --- a/tests/gpgme/run-tests.scm +++ b/tests/gpgme/run-tests.scm @@ -54,7 +54,7 @@ (apply path-join `(,(if (compiled? name) gpgme-builddir - gpgme-srcdir) ,@(:path cmpnts),name))) + gpgme-srcdir) ,@(:path cmpnts) ,(qualify name)))) (let ((makefile (apply path-join `(,gpgme-srcdir ,@(:path cmpnts) "Makefile.am")))) (map (lambda (name)