/freebsd/tests/sys/acl/ |
H A D | tools-crossfs.test | 32 # You need to have three subdirectories, named nfs4, posix and none, 48 $ touch posix/xxx 49 $ getfacl -nq posix/xxx 55 $ rm -f posix/xxx 56 $ rm -f posix/yyy 57 $ touch posix/xxx 58 $ chmod 456 posix/xxx 59 $ ls -l posix/xxx | cut -d' ' -f1 61 $ setfacl -m u:42:x,g:43:w posix/xxx 62 $ mv posix/xxx posix/yyy [all …]
|
H A D | 00.sh | 80 perl $TESTDIR/run $TESTDIR/tools-posix.test >&2
|
/freebsd/tools/tools/locale/ |
H A D | Makefile | 41 all: tools-test posix build afterbuild widths 42 .ORDER: tools-test posix build afterbuild widths 150 posix: posixcm post-posixcm posixsrc target 152 ${UNIDIR}/posix: ${UNIDIR} 153 ln -s -f ../posix ${.TARGET} 154 clean-posix: 155 rm -rf posix ${UNIDIR}/posix 156 ${UNIDIR}/posix/xx_Comm_C.UTF-8.src: ${UNIDIR}/posix 159 post-posixcm: ${UNIDIR}/posix/xx_Comm_C.UTF-8.src 161 posixcm: posix/${enc}.cm [all …]
|
H A D | README | 33 clean up tools or posix locale source files generated 52 make posix
|
/freebsd/contrib/bmake/unit-tests/ |
H A D | deptgt-posix.mk | 24 TESTTMP= ${TMPDIR:U/tmp}/make.test.deptgt-posix 37 printf '%s\n' > ${SYSDIR}/posix.mk \ 40 check-is-posix: .USE 50 check-not-posix: .USE 74 after-for: .PHONY set-up-sysdir check-not-posix run 85 after-if: .PHONY set-up-sysdir check-not-posix run 96 in-included-file: .PHONY set-up-sysdir check-not-posix run 103 in-first-line: .PHONY set-up-sysdir check-is-posix run 111 after-comment-lines: .PHONY set-up-sysdir check-is-posix run 121 no-builtins: .PHONY set-up-sysdir check-is-posix check-not-seen-sys-mk run
|
/freebsd/contrib/libarchive/libarchive/test/ |
H A D | test_read_format_lha.c | 135 verify(const char *refname, int posix) 145 if (posix) in verify() 159 if (posix) in verify() 188 if (posix) { in verify() 229 if (posix) in verify() 244 if (posix) { in verify() 254 if (posix) { in verify() 136 verify(const char * refname,int posix) verify() argument
|
/freebsd/contrib/netbsd-tests/include/ |
H A D | t_limits.c | 253 ATF_TC(posix); 254 ATF_TC_HEAD(posix, tc) in ATF_TC_HEAD() argument 259 ATF_TC_BODY(posix, tc) in ATF_TC_BODY() argument 283 ATF_TP_ADD_TC(tp, posix); in ATF_TP_ADD_TCS()
|
/freebsd/contrib/googletest/googletest/test/ |
H A D | gtest_premature_exit_test.cc | 40 using ::testing::internal::posix::GetEnv; 41 using ::testing::internal::posix::Stat; 42 using ::testing::internal::posix::StatStruct;
|
H A D | gtest_repeat_test.cc | 52 ::testing::internal::posix::Abort(); \ 92 EXPECT_DEATH_IF_SUPPORTED(::testing::internal::posix::Abort(), ""); in TEST() 95 EXPECT_DEATH_IF_SUPPORTED(::testing::internal::posix::Abort(), ""); in TEST()
|
H A D | googletest-filepath-test.cc | 79 posix::ChDir(GTEST_PATH_SEP_); 81 posix::ChDir(original_dir.c_str()); 501 posix::RmDir(testdata_path_.c_str()); in SetUp() 508 posix::RmDir(testdata_path_.c_str()); in TearDown() 512 FILE* f = posix::FOpen(filename, "w"); in CreateTextFile()
|
H A D | googletest-options-test.cc | 135 posix::ChDir(".."); in SetUp() 142 posix::ChDir(original_working_dir_.string().c_str()); in TearDown()
|
H A D | googletest-output-test_.cc | 55 namespace posix = ::testing::internal::posix; 1041 posix::FReopen("nul:", "w", stdout); in main() 1043 posix::FReopen("/dev/null", "w", stdout); in main()
|
/freebsd/tools/test/iconv/ |
H A D | Makefile | 1 SUBDIR= tablegen refgen posix gnu 70 posixtest: posix 71 @${.OBJDIR}/posix/posix
|
/freebsd/contrib/googletest/googletest/src/ |
H A D | gtest-filepath.cc | 258 posix::StatStruct file_stat{}; in FileOrDirectoryExists() 259 return posix::Stat(pathname_.c_str(), &file_stat) == 0; in FileOrDirectoryExists() 285 posix::StatStruct file_stat{}; in DirectoryExists() 287 posix::Stat(path.c_str(), &file_stat) == 0 && posix::IsDir(file_stat); in DirectoryExists()
|
H A D | gtest-port.cc | 1047 posix::Abort(); in ~GTestLog() 1166 FILE* const file = posix::FOpen(filename_.c_str(), "r"); in GetCapturedString() 1172 posix::FClose(file); in GetCapturedString() 1298 namespace posix { namespace 1371 const char* const string_value = posix::GetEnv(env_var.c_str()); in BoolFromGTestEnv() 1385 const char* const string_value = posix::GetEnv(env_var.c_str()); in Int32FromGTestEnv() 1414 const char* xml_output_file_env = posix::GetEnv("XML_OUTPUT_FILE"); in OutputFlagAlsoCheckEnvVar() 1428 const char* const value = posix::GetEnv(env_var.c_str()); in StringFromGTestEnv()
|
H A D | gtest-death-test.cc | 300 FILE* parent = posix::FDOpen(flag->write_fd(), "w"); in DeathTestAbort() 308 posix::Abort(); in DeathTestAbort() 347 return errno == 0 ? "" : posix::StrError(errno); in GetLastErrnoDescription() 360 while ((num_read = posix::Read(fd, buffer, 255)) > 0) { in FailFromInternalError() 479 bytes_read = posix::Read(read_fd(), &flag, 1); in ReadAndInterpretStatusByte() 507 GTEST_DEATH_TEST_CHECK_SYSCALL_(posix::Close(read_fd())); in ReadAndInterpretStatusByte() 525 GTEST_DEATH_TEST_CHECK_SYSCALL_(posix::Write(write_fd(), &status_ch, 1)); in Abort()
|
/freebsd/lib/libipt/ |
H A D | Makefile | 9 ${PTSRC}/libipt/src/posix \ 48 -I${PTSRC}/libipt/internal/include/posix \
|
/freebsd/contrib/bc/tests/ |
H A D | errors.sh | 85 posix="posix_errors" 122 if [ -z "${testfile##*$posix*}" ]; then
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-nm/ |
H A D | Opts.td | 23 defm format : Eq<"format", "Specify output format: bsd (default), posix, sysv, darwin, just-symbols">, MetaVarName<"<format>">; 60 def : FF<"portability", "Alias for --format=posix">, Alias<format_EQ>, AliasArgs<["posix"]>; 77 def : F<"P", "Alias for --format=posix">, Alias<format_EQ>, AliasArgs<["posix"]>;
|
/freebsd/tools/build/ |
H A D | check-links.sh | 57 unresolved_symbols=$(nm -u -D --format=posix "$1" | awk '$2 == "U" {print $1}' | tr '\n' ' ') 58 [ ${isbin} -eq 1 ] && bss_symbols=$(nm -D --format=posix "$1" | awk '$2 == "B" && $4 != "" {print $…
|
/freebsd/sys/contrib/openzfs/tests/runfiles/ |
H A D | linux.run | 25 [tests/functional/acl/posix:Linux] 27 tags = ['functional', 'acl', 'posix'] 29 [tests/functional/acl/posix-sa:Linux] 31 tags = ['functional', 'acl', 'posix-sa']
|
/freebsd/tools/test/iconv/posix/ |
H A D | Makefile | 1 PROG= posix
|
/freebsd/contrib/llvm-project/lldb/source/Utility/ |
H A D | FileSpec.cpp | 43 return FileSpec::Style::posix; in GetNativeStyle() 76 : FileSpec{path, triple.isOSWindows() ? Style::windows : Style::posix} {} in FileSpec() 211 return SetFile(path, triple.isOSWindows() ? Style::windows : Style::posix); in SetFile() 312 return Style::posix; in GuessPathStyle()
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/acl/posix/ |
H A D | setup.ksh | 49 log_must zfs set acltype=posix $TESTPOOL/$TESTFS
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/acl/posix-sa/ |
H A D | setup.ksh | 49 log_must zfs set acltype=posix $TESTPOOL/$TESTFS
|