Home | History | Annotate | Download | only in tests

Lines Matching refs:orig

314   char *orig = strdup("0123456789");
315 ASSERT_FORTIFY(strcpy(buf, orig));
316 free(orig);
326 char *orig = strdup("");
327 ASSERT_FORTIFY(strcpy(buf, orig));
328 free(orig);
338 char *orig = strdup("1");
339 ASSERT_FORTIFY(strcpy(buf, orig));
340 free(orig);
350 char *orig = strdup("12");
351 ASSERT_FORTIFY(strcpy(buf, orig));
352 free(orig);