@@ -353,8 +353,8 @@ if (!TST_PASS)
return;
-------------------------------------------------------------------------------
-If the return value of 'wait' is positive. This macro will print a pass result
-and set +TST_PASS+ appropriately. If the return value is zero or negative, then
+If the return value of 'wait' is positive or zero, this macro will print a pass
+result and set +TST_PASS+ appropriately. If the return value is negative, then
it will print fail. There are many similar macros to those shown here, please
see 'tst_test_macros.h'.
TST_EXP_POSITIVE() macro returns PASS result for zero value also. If we have any test scenarios which should pass only for values greater than zero, then we should rename this to something like TST_EXP_NON_NEG() and add new macro for only >0 values. Signed-off-by: Avinesh Kumar <akumar@suse.de> --- doc/c-test-api.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)