Symbol: ATF_TC_FSAPPLY
tests/fs/common/h_fsmacros.h
236
ATF_TC_FSAPPLY(func,desc); \
tests/fs/vfs/t_full.c
92
ATF_TC_FSAPPLY(fillfs, "fills file system, expects ENOSPC");
tests/fs/vfs/t_io.c
241
ATF_TC_FSAPPLY(holywrite, "create a sparse file and fill hole");
tests/fs/vfs/t_io.c
242
ATF_TC_FSAPPLY(extendfile, "check that extending a file works");
tests/fs/vfs/t_io.c
243
ATF_TC_FSAPPLY(extendfile_append, "check that extending a file works "
tests/fs/vfs/t_io.c
245
ATF_TC_FSAPPLY(overwrite512, "write a 512 byte file twice");
tests/fs/vfs/t_io.c
246
ATF_TC_FSAPPLY(overwrite64k, "write a 64k byte file twice");
tests/fs/vfs/t_io.c
247
ATF_TC_FSAPPLY(overwrite_trunc, "write 64k + truncate + rewrite");
tests/fs/vfs/t_io.c
248
ATF_TC_FSAPPLY(shrinkfile, "shrink file");
tests/fs/vfs/t_io.c
249
ATF_TC_FSAPPLY(read_after_unlink, "contents can be read off disk after unlink");
tests/fs/vfs/t_io.c
250
ATF_TC_FSAPPLY(wrrd_after_unlink, "file can be written and read after unlink");
tests/fs/vfs/t_io.c
251
ATF_TC_FSAPPLY(read_fault, "read at bad address must return EFAULT");
tests/fs/vfs/t_link.c
141
ATF_TC_FSAPPLY(hardlink_sameuser, "hardlink same user allowed");
tests/fs/vfs/t_link.c
142
ATF_TC_FSAPPLY(hardlink_sameuser_sysctl, "hardlink same user sysctl allowed");
tests/fs/vfs/t_link.c
143
ATF_TC_FSAPPLY(hardlink_otheruser, "hardlink other user allowed");
tests/fs/vfs/t_link.c
144
ATF_TC_FSAPPLY(hardlink_otheruser_sysctl, "hardlink other user sysctl denied");
tests/fs/vfs/t_link.c
145
ATF_TC_FSAPPLY(hardlink_rootuser, "hardlink root user allowed");
tests/fs/vfs/t_link.c
146
ATF_TC_FSAPPLY(hardlink_rootuser_sysctl, "hardlink root user sysctl allowed");
tests/fs/vfs/t_renamerace.c
264
ATF_TC_FSAPPLY(renamerace, "rename(2) race with file unlinked mid-operation");
tests/fs/vfs/t_renamerace.c
265
ATF_TC_FSAPPLY(renamerace_dirs, "rename(2) race with directories");
tests/fs/vfs/t_renamerace.c
266
ATF_TC_FSAPPLY(renamerace_cycle, "rename(2) race making directory cycles");
tests/fs/vfs/t_rwtoro.c
207
ATF_TC_FSAPPLY(noneopen, "remount r/o with no file open");
tests/fs/vfs/t_rwtoro.c
208
ATF_TC_FSAPPLY(readopen, "remount r/o with file open for reading");
tests/fs/vfs/t_rwtoro.c
209
ATF_TC_FSAPPLY(writeopen, "remount r/o with file open for writing");
tests/fs/vfs/t_rwtoro.c
210
ATF_TC_FSAPPLY(read_unlinked,
tests/fs/vfs/t_rwtoro.c
212
ATF_TC_FSAPPLY(layer_noneopen, "remount r/o with no file open on layer");
tests/fs/vfs/t_rwtoro.c
213
ATF_TC_FSAPPLY(layer_readopen,
tests/fs/vfs/t_rwtoro.c
215
ATF_TC_FSAPPLY(layer_writeopen,
tests/fs/vfs/t_rwtoro.c
217
ATF_TC_FSAPPLY(layer_read_unlinked,
tests/fs/vfs/t_union.c
194
ATF_TC_FSAPPLY(basic, "check basic union functionality");
tests/fs/vfs/t_union.c
195
ATF_TC_FSAPPLY(whiteout, "create whiteout in upper layer");
tests/fs/vfs/t_unpriv.c
219
ATF_TC_FSAPPLY(owner, "owner unprivileged checks");
tests/fs/vfs/t_unpriv.c
220
ATF_TC_FSAPPLY(dirperms, "directory permission checks");
tests/fs/vfs/t_unpriv.c
221
ATF_TC_FSAPPLY(times, "time set checks");
tests/fs/vfs/t_unpriv.c
222
ATF_TC_FSAPPLY(flags, "file flags checks");
tests/fs/vfs/t_vfsops.c
190
ATF_TC_FSAPPLY(tmount, "mount/unmount");
tests/fs/vfs/t_vfsops.c
191
ATF_TC_FSAPPLY(tstatvfs, "statvfs");
tests/fs/vfs/t_vfsops.c
192
ATF_TC_FSAPPLY(tsync, "sync");
tests/fs/vfs/t_vfsops.c
193
ATF_TC_FSAPPLY(tfilehandle, "file handles");
tests/fs/vfs/t_vfsops.c
194
ATF_TC_FSAPPLY(tfhremove, "fhtovp for removed file");
tests/fs/vfs/t_vfsops.c
195
ATF_TC_FSAPPLY(tfhinval, "fhopen invalid filehandle");
tests/fs/vfs/t_vnops.c
1065
ATF_TC_FSAPPLY(lookup_simple, "simple lookup (./.. on root)");
tests/fs/vfs/t_vnops.c
1066
ATF_TC_FSAPPLY(lookup_complex, "lookup of non-dot entries");
tests/fs/vfs/t_vnops.c
1067
ATF_TC_FSAPPLY(dir_simple, "mkdir/rmdir");
tests/fs/vfs/t_vnops.c
1068
ATF_TC_FSAPPLY(dir_slash, "mkdir with appended slash");
tests/fs/vfs/t_vnops.c
1069
ATF_TC_FSAPPLY(dir_2slash, "mkdir with two slashes appended");
tests/fs/vfs/t_vnops.c
1070
ATF_TC_FSAPPLY(dir_3slash, "mkdir with three slashes appended");
tests/fs/vfs/t_vnops.c
1071
ATF_TC_FSAPPLY(dir_notempty, "non-empty directories cannot be removed");
tests/fs/vfs/t_vnops.c
1072
ATF_TC_FSAPPLY(dir_rmdirdotdot, "remove .. and try to cd out (PR kern/44657)");
tests/fs/vfs/t_vnops.c
1073
ATF_TC_FSAPPLY(rename_dir, "exercise various directory renaming ops "
tests/fs/vfs/t_vnops.c
1075
ATF_TC_FSAPPLY(rename_dotdot, "rename dir .. (PR kern/43617)");
tests/fs/vfs/t_vnops.c
1076
ATF_TC_FSAPPLY(rename_reg_nodir, "rename regular files, no subdirectories");
tests/fs/vfs/t_vnops.c
1077
ATF_TC_FSAPPLY(create_nametoolong, "create file with name too long");
tests/fs/vfs/t_vnops.c
1078
ATF_TC_FSAPPLY(create_exist, "create with O_EXCL");
tests/fs/vfs/t_vnops.c
1079
ATF_TC_FSAPPLY(rename_nametoolong, "rename to file with name too long");
tests/fs/vfs/t_vnops.c
1080
ATF_TC_FSAPPLY(symlink_zerolen, "symlink with target of length 0");
tests/fs/vfs/t_vnops.c
1081
ATF_TC_FSAPPLY(symlink_long, "symlink with target of length > 0");
tests/fs/vfs/t_vnops.c
1082
ATF_TC_FSAPPLY(symlink_root, "symlink to root directory");
tests/fs/vfs/t_vnops.c
1083
ATF_TC_FSAPPLY(attrs, "check setting attributes works");
tests/fs/vfs/t_vnops.c
1084
ATF_TC_FSAPPLY(fcntl_lock, "check fcntl F_SETLK");
tests/fs/vfs/t_vnops.c
1085
ATF_TC_FSAPPLY(fcntl_getlock_pids,"fcntl F_GETLK w/ many procs, PR kern/44494");
tests/fs/vfs/t_vnops.c
1086
ATF_TC_FSAPPLY(access_simple, "access(2)");
tests/fs/vfs/t_vnops.c
1087
ATF_TC_FSAPPLY(read_directory, "read(2) on directories");
tests/fs/vfs/t_vnops.c
1088
ATF_TC_FSAPPLY(lstat_symlink, "lstat(2) values for symbolic links");
tests/fs/vfs/t_vnops.c
1092
ATF_TC_FSAPPLY(create_many, "create many directory entries");
tests/fs/vfs/t_vnops.c
1093
ATF_TC_FSAPPLY(create_nonalphanum, "non-alphanumeric filenames");