Change exit_checker comment on returned status
authorRichard Levitte <levitte@openssl.org>
Wed, 22 Mar 2017 07:49:57 +0000 (08:49 +0100)
committerRichard Levitte <levitte@openssl.org>
Wed, 22 Mar 2017 07:49:57 +0000 (08:49 +0100)
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3012)

test/testlib/OpenSSL/Test.pm

index cbfc867a7fe0079e25da6fc02bf12422a1a79f45..7420884d0420776e501f30f2d19916451bc096ec 100644 (file)
@@ -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 },
 
     );