| t_vnode.c | 512 static const char testfile[] = "testfile";  variable in typeref:typename:const char[] 524 	char buf[sizeof(testfile)];
 534 	ATF_REQUIRE((fd = open(testfile,
 548 	ATF_REQUIRE((fd = open(testfile, O_RDWR)) != -1);
 552 	ATF_REQUIRE((pwrite(fd, testfile,
 553 			    sizeof(testfile), 0)) == sizeof(testfile));
 558 	ATF_REQUIRE((pwrite(fd, testfile,
 559 			    sizeof(testfile), 0)) == sizeof(testfile))
 [all...]
 |