[openssl-commits] [openssl] master update

Richard Levitte levitte at openssl.org
Wed Mar 22 09:09:05 UTC 2017


The branch master has been updated
       via  089a45c5dfc28bf3c28a1fcfc0080833509fdd14 (commit)
      from  34fffdb521040d3bc658c1ceaa9c79fbd191ded3 (commit)


- Log -----------------------------------------------------------------
commit 089a45c5dfc28bf3c28a1fcfc0080833509fdd14
Author: Richard Levitte <levitte at openssl.org>
Date:   Wed Mar 22 08:49:57 2017 +0100

    Change exit_checker comment on returned status
    
    Reviewed-by: Matt Caswell <matt at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/3012)

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

Summary of changes:
 test/testlib/OpenSSL/Test.pm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/test/testlib/OpenSSL/Test.pm b/test/testlib/OpenSSL/Test.pm
index cbfc867..7420884 100644
--- a/test/testlib/OpenSSL/Test.pm
+++ b/test/testlib/OpenSSL/Test.pm
@@ -91,9 +91,9 @@ my %hooks = (
 
     # exit_checker is used by run() directly after completion of a command.
     # it receives the exit code from that command and is expected to return
-    # 1 (for success) or 0 (for failure).  This is the value that will be
-    # returned by run().
-    # NOTE: When run() gets the option 'capture => 1', this hook is ignored.
+    # 1 (for success) or 0 (for failure).  This is the status value that run()
+    # will give back (through the |statusvar| referens and as returned value
+    # when capture => 1 doesn't apply).
     exit_checker => sub { return shift == 0 ? 1 : 0 },
 
     );


More information about the openssl-commits mailing list