/freebsd/contrib/libarchive/tar/test/ |
H A D | test_option_C_mtree.c | 26 char *absolute_path = malloc(strlen(testworkdir) + strlen(mtree_file) + 1); in DEFINE_TEST() local 27 strcpy(absolute_path, testworkdir); in DEFINE_TEST() 28 strcat(absolute_path, mtree_file ); in DEFINE_TEST() 31 assertMakeFile(absolute_path, 0777, content); in DEFINE_TEST() 36 p = absolute_path; in DEFINE_TEST() 43 r = systemf("%s -cf %s -C bar @%s >step1.out 2>step1.err", testprog, filename, absolute_path); in DEFINE_TEST() 44 failure("Error invoking %s -cf %s -C bar @%s", testprog, filename, absolute_path); in DEFINE_TEST() 46 r = systemf("%s -cf %s -C bar \"@%s\" >step1.out 2>step1.err", testprog, filename, absolute_path); in DEFINE_TEST() 47 failure("Error invoking %s -cf %s -C bar \"@%s\"", testprog, filename, absolute_path); in DEFINE_TEST() 67 free(absolute_path); in DEFINE_TEST()
|
/freebsd/contrib/kyua/store/ |
H A D | testdata_v1.sql | 67 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root, 82 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root, 108 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root, 124 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root, 140 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root, 169 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root, 238 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root, 279 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root, 304 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root,
|
H A D | testdata_v2.sql | 79 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root, 105 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root, 142 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root, 169 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root, 196 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root, 236 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root, 318 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root, 381 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root, 417 INSERT INTO test_programs (test_program_id, action_id, absolute_path, root,
|
H A D | testdata_v3_2.sql | 59 INSERT INTO test_programs (test_program_id, absolute_path, root, 85 INSERT INTO test_programs (test_program_id, absolute_path, root, 122 INSERT INTO test_programs (test_program_id, absolute_path, root, 149 INSERT INTO test_programs (test_program_id, absolute_path, root, 176 INSERT INTO test_programs (test_program_id, absolute_path, root,
|
H A D | testdata_v3_4.sql | 60 INSERT INTO test_programs (test_program_id, absolute_path, root, 96 INSERT INTO test_programs (test_program_id, absolute_path, root,
|
H A D | testdata_v3_3.sql | 56 INSERT INTO test_programs (test_program_id, absolute_path, root, 138 INSERT INTO test_programs (test_program_id, absolute_path, root,
|
H A D | migrate_v1_v2.sql | 99 absolute_path TEXT NOT NULL, field 107 INSERT INTO new_test_programs (test_program_id, action_id, absolute_path, 110 SELECT test_program_id, action_id, absolute_path, root, relative_path,
|
H A D | schema_v3.sql | 148 absolute_path TEXT NOT NULL, field
|
H A D | schema_v1.sql | 145 absolute_path NOT NULL, field
|
H A D | schema_v2.sql | 179 absolute_path TEXT NOT NULL, field
|
H A D | migrate_v2_v3.sql | 76 SELECT test_program_id, absolute_path, root, relative_path,
|
H A D | write_transaction.cpp | 302 stmt.bind(":absolute_path", test_program.absolute_path().str()); in put_test_program()
|
/freebsd/contrib/kyua/os/freebsd/ |
H A D | execenv_jail.cpp | 52 jail.make_name(_test_program.absolute_path(), _test_case_name), in init() 62 jail.make_name(_test_program.absolute_path(), _test_case_name) in cleanup() 71 jail.make_name(_test_program.absolute_path(), _test_case_name), in exec() 72 _test_program.absolute_path(), in exec()
|
/freebsd/tools/test/stress2/testcases/openat/ |
H A D | doat.c | 67 char *absolute_path = NULL; variable 107 absolute_path = getcwd(NULL, 0); in setup() 108 if (absolute_path == NULL) { in setup() 113 absolute_path = realloc(absolute_path, strlen(absolute_path) + 5); in setup() 114 if (absolute_path == NULL) { in setup() 119 strcat(absolute_path, "/"); in setup() 120 strcat(absolute_path, relative_path); in setup() 122 absolute_file = malloc(strlen(absolute_path) + 1 + strlen(file)); in setup() 123 bzero(absolute_file, strlen(absolute_path) + 1 + strlen(file)); in setup() 128 strcpy(absolute_file, absolute_path); in setup() [all …]
|
/freebsd/tools/regression/doat/ |
H A D | doat.c | 70 char *absolute_path = NULL; variable 112 absolute_path = (char *)getcwd(NULL, 0); in setup() 113 if (absolute_path == NULL) { in setup() 118 len = strlen(absolute_path); in setup() 119 absolute_path = realloc(absolute_path, in setup() 121 if (absolute_path == NULL) { in setup() 126 absolute_path[len] = '/'; in setup() 127 strcpy(absolute_path + len + 1, relative_path); in setup() 129 absolute_file = malloc(strlen(absolute_path) + 1 + strlen(file)); in setup() 130 bzero(absolute_file, strlen(absolute_path) + 1 + strlen(file)); in setup() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Utility/ |
H A D | FileSpec.cpp | 310 FileSpec::GuessPathStyle(llvm::StringRef absolute_path) { in GuessPathStyle() argument 311 if (absolute_path.starts_with("/")) in GuessPathStyle() 313 if (absolute_path.starts_with(R"(\\)")) in GuessPathStyle() 315 if (absolute_path.size() >= 3 && llvm::isAlpha(absolute_path[0]) && in GuessPathStyle() 316 (absolute_path.substr(1, 2) == R"(:\)" || in GuessPathStyle() 317 absolute_path.substr(1, 2) == R"(:/)")) in GuessPathStyle()
|
/freebsd/contrib/kyua/engine/ |
H A D | kyuafile_test.cpp | 354 suite.test_programs()[0]->absolute_path()); in ATF_TEST_CASE_BODY() 358 suite.test_programs()[1]->absolute_path()); in ATF_TEST_CASE_BODY() 363 suite.test_programs()[2]->absolute_path()); in ATF_TEST_CASE_BODY() 396 suite.test_programs()[0]->absolute_path()); in ATF_TEST_CASE_BODY() 437 suite.test_programs()[0]->absolute_path()); in ATF_TEST_CASE_BODY() 439 suite.test_programs()[1]->absolute_path()); in ATF_TEST_CASE_BODY()
|
H A D | scheduler.cpp | 353 const std::string absolute = program.absolute_path().str(); in force_absolute_paths() 1048 LI(F("Spawning %s:%s (cleanup)") % test_program->absolute_path() % in spawn_cleanup() 1105 % test_program->absolute_path() % test_case_name); in spawn_execenv_cleanup() 1292 LI(F("Spawning %s:%s") % test_program->absolute_path() % test_case_name); in spawn_test() 1341 utils::dump_stacktrace_if_available(data->test_program->absolute_path(), in wait_any()
|
H A D | atf.cpp | 105 process::exec_unsafe(test_program.absolute_path(), args); in exec_list()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/ |
H A D | CompileUnitIndex.cpp | 245 llvm::SmallString<64> absolute_path = working_dir.String; in GetMainSourceFile() local 246 llvm::sys::path::append(absolute_path, file_name.String); in GetMainSourceFile() 247 return absolute_path; in GetMainSourceFile()
|
/freebsd/contrib/kyua/model/ |
H A D | test_program.cpp | 171 model::test_program::absolute_path(void) const in absolute_path() function in model::test_program 301 return absolute_path() < other.absolute_path(); in operator <()
|
H A D | test_program.hpp | 69 const utils::fs::path absolute_path(void) const;
|
/freebsd/contrib/kyua/engine/execenv/ |
H A D | execenv_host.cpp | 51 utils::process::exec(_test_program.absolute_path(), args); in exec()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
H A D | FileSpec.h | 198 static std::optional<Style> GuessPathStyle(llvm::StringRef absolute_path);
|
/freebsd/contrib/kyua/drivers/ |
H A D | scan_results_test.cpp | 123 iter.test_program()->absolute_path() % in got_result()
|