4 #include "../include/subr_atf.h"
7 ATF_TC_HEAD(test_self, tc)
10 ATF_TC_BODY(test_self, tc)
16 * 1. failures are sticky
17 * 2. for each failure, only one error message is printed
18 * (the latter requires visual inspection)
20 ATF_FOR_LOOP(i, N, i++) {
25 printf("%d = i\n", i);
31 ATF_TP_ADD_TC(tp, test_self);
33 return atf_no_error();