Clarify the advice about reporting errors in test hooks

Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
Gilles Peskine 2021-02-15 10:59:13 +01:00
parent 414e717036
commit 76e9c64c3e

View File

@ -265,8 +265,9 @@ void test_hooks_init( void );
/** Check if any test hooks detected a problem. /** Check if any test hooks detected a problem.
* *
* If a problem was detected, make sure to print an explanation to stderr, * \note When implementing a test hook, make sure to print a message
* either at the time of detection or during the call to this function. * to standard error either at the time the problem is detected
* or during the execution of this function.
* *
* \return Nonzero if a problem was detected. * \return Nonzero if a problem was detected.
* \c 0 if no problem was detected. * \c 0 if no problem was detected.