From 5ff5f745d125afd08820b678682e804101ca5046 Mon Sep 17 00:00:00 2001 From: Jon Spillett Date: Fri, 11 Aug 2017 10:48:40 +1000 Subject: [extended tests] Add steps to update an external test suite Reviewed-by: Paul Dale Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/4139) --- test/README.external | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/test/README.external b/test/README.external index 8eaefd2164..b4b011b5ca 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 + $ git pull origin master + +- Go to root directory, there should be a new git status: + + $ cd ../ + $ git status + ... + # modified: (new commits) + ... + +- Add/commit/push the update + + git add + git commit -m "Updated to latest commit" + git push + -- cgit v1.2.3