[openssl-commits] [openssl] master update

paul.dale at oracle.com paul.dale at oracle.com
Fri Aug 11 01:16:40 UTC 2017


The branch master has been updated
       via  5ff5f745d125afd08820b678682e804101ca5046 (commit)
       via  670d3030d197894139712cc79b25c3144b81176c (commit)
      from  ed5c7ea250657796517fef035e162b20eb8d3c7f (commit)


- Log -----------------------------------------------------------------
commit 5ff5f745d125afd08820b678682e804101ca5046
Author: Jon Spillett <jon.spillett at oracle.com>
Date:   Fri Aug 11 10:48:40 2017 +1000

    [extended tests] Add steps to update an external test suite
    
    Reviewed-by: Paul Dale <paul.dale at oracle.com>
    Reviewed-by: Rich Salz <rsalz at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/4139)

commit 670d3030d197894139712cc79b25c3144b81176c
Author: Jon Spillett <jon.spillett at oracle.com>
Date:   Thu Aug 10 16:52:04 2017 +1000

    Update pyca-cryptography to latest commit
    
    Reviewed-by: Paul Dale <paul.dale at oracle.com>
    Reviewed-by: Rich Salz <rsalz at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/4139)

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

Summary of changes:
 pyca-cryptography    |  2 +-
 test/README.external | 30 ++++++++++++++++++++++++++++++
 2 files changed, 31 insertions(+), 1 deletion(-)

diff --git a/pyca-cryptography b/pyca-cryptography
index 139b25f..c1f8e46 160000
--- a/pyca-cryptography
+++ b/pyca-cryptography
@@ -1 +1 @@
-Subproject commit 139b25f2ba73bb34dfe1f100e64a11f17a83618d
+Subproject commit c1f8e460330b7ce83d4ea5a9b753a35321f0cf9e
diff --git a/test/README.external b/test/README.external
index 8eaefd2..b4b011b 100644
--- a/test/README.external
+++ b/test/README.external
@@ -132,3 +132,33 @@ Test failures supressions
 krb5 will automatically adapt its test suite to account for the configuration
 of your system.  Certain tests may require more installed packages to run.  No
 tests are expected to fail.
+
+
+Updating test suites
+====================
+
+To update the commit for any of the above test suites:
+
+- Make sure the submodules are cloned locally:
+
+  $ git submodule update --init --recursive
+
+- Enter subdirectory and pull from the repository (use a specific branch/tag if required):
+
+  $ cd <submodule-dir> 
+  $ git pull origin master
+
+- Go to root directory, there should be a new git status:
+
+  $ cd ../
+  $ git status
+  ...
+  #       modified:   <submodule-dir> (new commits)
+  ...
+
+- Add/commit/push the update
+
+  git add <submodule-dir>
+  git commit -m "Updated <submodule> to latest commit"
+  git push
+


More information about the openssl-commits mailing list