Home
last modified time | relevance | path

Searched refs:absolute_path (Results 1 – 25 of 28) sorted by relevance

12

/freebsd/contrib/libarchive/tar/test/
H A Dtest_option_C_mtree.c26 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 Dtestdata_v1.sql67 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 Dtestdata_v2.sql79 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 Dtestdata_v3_2.sql59 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 Dtestdata_v3_4.sql60 INSERT INTO test_programs (test_program_id, absolute_path, root,
96 INSERT INTO test_programs (test_program_id, absolute_path, root,
H A Dtestdata_v3_3.sql56 INSERT INTO test_programs (test_program_id, absolute_path, root,
138 INSERT INTO test_programs (test_program_id, absolute_path, root,
H A Dmigrate_v1_v2.sql99 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 Dschema_v3.sql148 absolute_path TEXT NOT NULL, field
H A Dschema_v1.sql145 absolute_path NOT NULL, field
H A Dschema_v2.sql179 absolute_path TEXT NOT NULL, field
H A Dmigrate_v2_v3.sql76 SELECT test_program_id, absolute_path, root, relative_path,
H A Dwrite_transaction.cpp302 stmt.bind(":absolute_path", test_program.absolute_path().str()); in put_test_program()
/freebsd/contrib/kyua/os/freebsd/
H A Dexecenv_jail.cpp52 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 Ddoat.c67 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 Ddoat.c70 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 DFileSpec.cpp310 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 Dkyuafile_test.cpp354 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 Dscheduler.cpp353 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 Datf.cpp105 process::exec_unsafe(test_program.absolute_path(), args); in exec_list()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DCompileUnitIndex.cpp245 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 Dtest_program.cpp171 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 Dtest_program.hpp69 const utils::fs::path absolute_path(void) const;
/freebsd/contrib/kyua/engine/execenv/
H A Dexecenv_host.cpp51 utils::process::exec(_test_program.absolute_path(), args); in exec()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DFileSpec.h198 static std::optional<Style> GuessPathStyle(llvm::StringRef absolute_path);
/freebsd/contrib/kyua/drivers/
H A Dscan_results_test.cpp123 iter.test_program()->absolute_path() % in got_result()

12