[git] GnuPG - branch, master, updated. gnupg-2.1.19-55-gc7833ec

by Justus Winter cvs at cvs.gnupg.org
Wed Mar 15 12:35:31 CET 2017


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The GNU Privacy Guard".

The branch, master has been updated
       via  c7833eca38fdb8d9ba7b59438ea87d651b8bf7ba (commit)
      from  6993e42088c191f18468317ba2b5b8fbc8c3edff (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit c7833eca38fdb8d9ba7b59438ea87d651b8bf7ba
Author: Justus Winter <justus at g10code.com>
Date:   Wed Mar 15 12:34:04 2017 +0100

    tests: Dump the tools that the tests are going to use.
    
    * tests/openpgp/setup.scm: Dump the tools that the tests are going to
    use.  This will help us diagnose problems with the tests picking the
    wrong paths in the future.
    
    GnuPG-bug-id: 2979
    Signed-off-by: Justus Winter <justus at g10code.com>

diff --git a/tests/openpgp/setup.scm b/tests/openpgp/setup.scm
index bf1876e..4b3bfcb 100755
--- a/tests/openpgp/setup.scm
+++ b/tests/openpgp/setup.scm
@@ -22,6 +22,24 @@
 (unless (member "--create-tarball" *args*)
 	(fail "Usage: setup.scm --create-tarball <file>"))
 
+(when (> (*verbose*) 0)
+      (define (pad symbol length)
+	(let loop ((cs (string->list (symbol->string symbol)))
+		   (result (make-string length #\space))
+		   (i 0))
+	  (if (null? cs)
+	      result
+	      (begin
+		(string-set! result i (car cs))
+		(loop (cdr cs) result (+ 1 i))))))
+      (log " I am going to use these tools:\n"
+	   "==============================")
+      (for-each
+       (lambda (t)
+	 (log (pad t 25) (tool t)))
+       '(gpgconf gpg gpg-agent scdaemon gpgsm dirmngr gpg-connect-agent
+		 gpg-preset-passphrase gpgtar pinentry)))
+
 (with-ephemeral-home-directory
  (chdir (getenv "GNUPGHOME"))
  (create-gpghome)

-----------------------------------------------------------------------

Summary of changes:
 tests/openpgp/setup.scm | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)


hooks/post-receive
-- 
The GNU Privacy Guard
http://git.gnupg.org




More information about the Gnupg-commits mailing list