Searched refs:relative_path (Results 1 - 4 of 4) sorted by relevance

/gem5/ext/googletest/googletest/scripts/
H A Dfuse_gtest_files.py89 def VerifyFileExists(directory, relative_path):
92 relative_path is the file path relative to the given directory.
95 if not os.path.isfile(os.path.join(directory, relative_path)):
96 print('ERROR: Cannot find %s in directory %s.' % (relative_path,
113 def VerifyOutputFile(output_dir, relative_path):
116 relative_path is relative to the output_dir directory.
120 output_file = os.path.join(output_dir, relative_path)
126 (relative_path, output_dir))
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-filepath.h92 // Given directory = "dir", relative_path = "test.xml",
96 const FilePath& relative_path);
/gem5/ext/googletest/googletest/test/
H A Dgtest-options_test.cc63 FilePath GetAbsolutePathOf(const FilePath& relative_path) { argument
64 return FilePath::ConcatPaths(FilePath::GetCurrentDir(), relative_path);
/gem5/ext/googletest/googletest/src/
H A Dgtest-filepath.cc197 // Given directory = "dir", relative_path = "test.xml", returns "dir/test.xml".
200 const FilePath& relative_path) {
202 return relative_path;
204 return FilePath(dir.string() + kPathSeparator + relative_path.string());
199 ConcatPaths(const FilePath& directory, const FilePath& relative_path) argument

Completed in 8 milliseconds