Searched defs:testfile (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/test/zfs-tests/cmd/largest_file/
H A Dlargest_file.c62 char *testfile; local
71 testfile = strdup(argv[1]);
73 fd = open(testfile, O_CREAT | O_RDWR, mode);
75 perror("Failed to create testfile");
82 perror("Failed to seek to end of testfile");
117 (void) unlink(testfile);
118 free(testfile);
125 (void) printf("%s <testfile>\n", name);
/illumos-gate/usr/src/cmd/svr4pkg/libinst/
H A Dmntinfo.c189 char testfile[PATH_MAX]; local
193 (void) snprintf(testfile, sizeof (testfile), "%s/testXXXXXX", mountpt);
195 if (mktemp(testfile) == NULL)
198 else if ((fd = creat(testfile, 0777)) == -1)
208 (void) unlink(testfile);
/illumos-gate/usr/src/cmd/boot/bootadm/
H A Dbootadm.c4058 char testfile[PATH_MAX]; local
4066 (void) snprintf(testfile, sizeof (testfile), "%s/%s.%d",
4069 (void) unlink(testfile);
4072 fd = open(testfile, O_RDWR|O_CREAT|O_EXCL, 0644);
4084 (void) unlink(testfile);

Completed in 83 milliseconds