diff options
author | Justus Winter <[email protected]> | 2017-01-25 10:16:23 +0000 |
---|---|---|
committer | Justus Winter <[email protected]> | 2017-01-25 10:16:23 +0000 |
commit | 6ecd8b3e71632bbcca524ad735c83bdc2a4c4a4a (patch) | |
tree | ed606f98aa75a910d9daae86b254bcc706cd16d5 | |
parent | gpg: Print a warning on Tor problems. (diff) | |
download | gnupg-6ecd8b3e71632bbcca524ad735c83bdc2a4c4a4a.tar.gz gnupg-6ecd8b3e71632bbcca524ad735c83bdc2a4c4a4a.zip |
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 <[email protected]>
-rw-r--r-- | tests/gpgme/run-tests.scm | 2 |
1 files changed, 1 insertions, 1 deletions
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) |