Home | History | Annotate | Download | only in tests

Lines Matching defs:pbuf

1249   char *pbuf;
1250 EXPECT_POISONED(pbuf);
1251 int res = asprintf(&pbuf, "%d", 1234567); // NOLINT
1253 EXPECT_NOT_POISONED(pbuf);
1254 assert(pbuf[0] == '1');
1255 assert(pbuf[1] == '2');
1256 assert(pbuf[2] == '3');
1257 assert(pbuf[6] == '7');
1258 assert(pbuf[7] == 0);
1259 free(pbuf);