[git] GPGME - branch, master, updated. gpgme-1.7.0-18-ga423603

by Justus Winter cvs at cvs.gnupg.org
Tue Sep 27 12:37:32 CEST 2016


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 "GnuPG Made Easy".

The branch, master has been updated
       via  a423603f80d9eb653ce9c171662db2175d7456f5 (commit)
      from  c9934bb1eecae28abeb361db9f5eb73e7e02ecb6 (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 a423603f80d9eb653ce9c171662db2175d7456f5
Author: Justus Winter <justus at g10code.com>
Date:   Tue Sep 27 12:28:38 2016 +0200

    tests: Fix check for gpg versions not reporting the critical flag.
    
    * lang/python/tests/t-sig-notation.py: Also blacklist 2.0.x.
    * tests/gpg/t-sig-notation.c: Likewise.
    
    Signed-off-by: Justus Winter <justus at g10code.com>

diff --git a/lang/python/tests/t-sig-notation.py b/lang/python/tests/t-sig-notation.py
index 777bc0b..68f9c08 100755
--- a/lang/python/tests/t-sig-notation.py
+++ b/lang/python/tests/t-sig-notation.py
@@ -36,6 +36,7 @@ expected_notations = {
 with core.Context() as c:
     version = c.engine_info.version
     have_correct_sig_data = not (version.startswith("1.")
+                                 version.startswith("2.0.")
                                  or version == "2.1.1"
                                  or (version.startswith("2.1.1")
                                      and version[5] < '3'))
diff --git a/tests/gpg/t-sig-notation.c b/tests/gpg/t-sig-notation.c
index aee7551..091a26e 100644
--- a/tests/gpg/t-sig-notation.c
+++ b/tests/gpg/t-sig-notation.c
@@ -151,6 +151,7 @@ main (int argc, char *argv[])
      correctly.  */
   have_correct_sig_data =
     ! (strncmp ("1.", engine_info->version, 2) == 0
+       || strncmp ("2.0.", version, 4) == 0
        || (strncmp ("2.1.1", engine_info->version, 5) == 0
            && (engine_info->version[5] == 0
                || engine_info->version[5] < '3')));

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

Summary of changes:
 lang/python/tests/t-sig-notation.py | 1 +
 tests/gpg/t-sig-notation.c          | 1 +
 2 files changed, 2 insertions(+)


hooks/post-receive
-- 
GnuPG Made Easy
http://git.gnupg.org




More information about the Gnupg-commits mailing list