Lines Matching defs:long_contents
163 char long_contents[3456];
165 for (; i < sizeof(long_contents) - 1; i++)
166 long_contents[i] = '0' + (i % 10);
167 long_contents[i] = '\0';
168 atf_utils_create_file("test.txt", "%s", long_contents);
170 ATF_REQUIRE(atf_utils_compare_file("test.txt", long_contents));
176 char long_contents[3456];
178 for (; i < sizeof(long_contents) - 1; i++)
179 long_contents[i] = '0' + (i % 10);
180 long_contents[i] = '\0';
181 atf_utils_create_file("test.txt", "%s", long_contents);
186 long_contents[i - 1] = 'Z';
187 ATF_REQUIRE(!atf_utils_compare_file("test.txt", long_contents));