4 static char buf
[32768];
5 static const char expected
[] = "\
8 abbcd55%%%%%%%%%%%%%%%%%%%%%%%%%%\n";
13 snprintf (buf
, sizeof (buf
),
14 "\n%1$s\n" "%1$s" "%2$s" "%2$s" "%3$s" "%4$s" "%5$d" "%5$d"
15 "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n",
16 "a", "b", "c", "d", 5);
17 return strcmp (buf
, expected
) != 0;
20 #define TEST_FUNCTION do_test ()
21 #include "../test-skeleton.c"