Searched refs:absolute_path (Results 1 - 22 of 22) sorted by relevance

/freebsd-13-stable/contrib/libarchive/tar/test/
H A Dtest_option_C_mtree.c45 char *absolute_path = malloc(strlen(testworkdir) + strlen(mtree_file) + 1); local
46 strcpy(absolute_path, testworkdir);
47 strcat(absolute_path, mtree_file );
50 assertMakeFile(absolute_path, 0777, content);
55 p = absolute_path;
62 r = systemf("%s -cf %s -C bar @%s >step1.out 2>step1.err", testprog, filename, absolute_path);
63 failure("Error invoking %s -cf %s -C bar @%s", testprog, filename, absolute_path);
65 r = systemf("%s -cf %s -C bar \"@%s\" >step1.out 2>step1.err", testprog, filename, absolute_path);
66 failure("Error invoking %s -cf %s -C bar \"@%s\"", testprog, filename, absolute_path);
86 free(absolute_path);
[all...]
/freebsd-13-stable/contrib/kyua/engine/
H A Datf.cpp103 process::exec_unsafe(test_program.absolute_path(), args);
193 process::exec(test_program.absolute_path(), args);
222 process::exec(test_program.absolute_path(), args);
H A Dplain.cpp107 process::exec(test_program.absolute_path(), args);
H A Dkyuafile_test.cpp354 suite.test_programs()[0]->absolute_path());
358 suite.test_programs()[1]->absolute_path());
363 suite.test_programs()[2]->absolute_path());
388 // Change the directory. We want later calls to absolute_path() on the test
396 suite.test_programs()[0]->absolute_path());
437 suite.test_programs()[0]->absolute_path());
439 suite.test_programs()[1]->absolute_path());
H A Dtap.cpp154 process::exec(test_program.absolute_path(), args);
H A Dscheduler.cpp286 /// objects were created. This causes the absolute_path() method of
299 const std::string absolute = program.absolute_path().str();
911 LI(F("Spawning %s:%s (cleanup)") % test_program->absolute_path() %
1100 LI(F("Spawning %s:%s") % test_program->absolute_path() % test_case_name);
1149 utils::dump_stacktrace_if_available(data->test_program->absolute_path(),
H A Dscheduler_test.cpp225 const std::string name = test_program.absolute_path().leaf_name();
230 if (fs::exists(test_program.absolute_path())) {
327 do_exit(fs::exists(test_program.absolute_path()) ? 0 : 1);
/freebsd-13-stable/tools/regression/doat/
H A Ddoat.c72 char *absolute_path = NULL; variable
114 absolute_path = (char *)getcwd(NULL, 0);
115 if (absolute_path == NULL) {
120 len = strlen(absolute_path);
121 absolute_path = realloc(absolute_path,
123 if (absolute_path == NULL) {
128 absolute_path[len] = '/';
129 strcpy(absolute_path + len + 1, relative_path);
131 absolute_file = malloc(strlen(absolute_path)
[all...]
/freebsd-13-stable/contrib/kyua/model/
H A Dtest_program.hpp69 const utils::fs::path absolute_path(void) const;
H A Dtest_program.cpp171 model::test_program::absolute_path(void) const function in class:model::test_program
301 return absolute_path() < other.absolute_path();
H A Dtest_program_test.cpp139 test_program.absolute_path());
/freebsd-13-stable/contrib/llvm-project/lldb/source/Utility/
H A DFileSpec.cpp310 llvm::Optional<FileSpec::Style> FileSpec::GuessPathStyle(llvm::StringRef absolute_path) { argument
311 if (absolute_path.startswith("/"))
313 if (absolute_path.startswith(R"(\\)"))
315 if (absolute_path.size() > 3 && llvm::isAlpha(absolute_path[0]) &&
316 absolute_path.substr(1, 2) == R"(:\)")
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DCompileUnitIndex.cpp222 llvm::SmallString<64> absolute_path = working_dir.String;
223 llvm::sys::path::append(absolute_path, file_name.String);
224 return absolute_path;
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DFileSpec.h198 static llvm::Optional<Style> GuessPathStyle(llvm::StringRef absolute_path);
H A DReproducer.h457 FileSpec absolute_path = local
459 file = absolute_path.GetPath();
/freebsd-13-stable/contrib/kyua/store/
H A Dmigrate_v1_v2.sql55 -- * Added missing column affinities to the absolute_path and relative_path
99 absolute_path TEXT NOT NULL,
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 Dwrite_transaction.cpp297 "INSERT INTO test_programs (absolute_path, "
300 "VALUES (:absolute_path, :root, :relative_path, "
302 stmt.bind(":absolute_path", test_program.absolute_path().str());
H A Dschema_v3.sql148 absolute_path TEXT NOT NULL,
H A Dschema_v1.sql145 absolute_path NOT NULL,
H A Dschema_v2.sql179 absolute_path TEXT NOT NULL,
/freebsd-13-stable/contrib/kyua/drivers/
H A Dscan_results_test.cpp123 iter.test_program()->absolute_path() %
/freebsd-13-stable/contrib/kyua/cli/
H A Dcmd_report_html.cpp353 test_program->absolute_path().str());

Completed in 190 milliseconds