Home | History | Annotate | Download | only in tests

Lines Matching full:testline

11 #define V(cond, testline)                                               \
14 testline, __LINE__); } \
20 static void check (int testline, void *p, int len, unsigned char access, int heap)
33 V (r == VALGRIND_HG_GET_ABITS (p, NULL, len), testline);
34 V (access == 0xff ? r == len : r == 0, testline);
36 V(shadow[i] == access, testline);
40 V (r == VALGRIND_HG_GET_ABITS (p-1, NULL, len+1), testline);
41 V (access == 0xff ? r == len : r == 0, testline);
42 V (shadow[0] == 0x00, testline);
44 V (shadow[i] == access, testline);
48 V (r == VALGRIND_HG_GET_ABITS (p+1, NULL, len), testline);
50 V (r == 0, testline);
52 V (access == 0xff ? r == len-1 : r == 0, testline);
54 V(shadow[i] == access, testline);
56 V(shadow[len-1] == 0x00, testline);