From: Richard Levitte Date: Wed, 22 Mar 2017 07:49:57 +0000 (+0100) Subject: Change exit_checker comment on returned status X-Git-Tag: OpenSSL_1_1_1-pre1~1967 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=089a45c5dfc28bf3c28a1fcfc0080833509fdd14;p=openssl Change exit_checker comment on returned status Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/3012) --- diff --git a/test/testlib/OpenSSL/Test.pm b/test/testlib/OpenSSL/Test.pm index cbfc867a7f..7420884d04 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 }, );