Lines Matching full:path
41 search path and linking with OUTPUT_DIR/gtest/gtest-all.cc. These
50 ./fuse_gtest_files.py path/to/unpacked/gtest fused_gtest
83 """Returns the absolute path to the Google Test root directory.
88 my_path = sys.argv[0] # Path to this script.
89 my_dir = os.path.dirname(my_path)
93 return os.path.abspath(os.path.join(my_dir, '..'))
105 relative_path is the file path relative to the gtest root.
108 if not os.path.isfile(os.path.join(gtest_root, relative_path)):
126 """Verifies that the given output file path is valid.
132 output_file = os.path.join(output_dir, relative_path)
133 if os.path.exists(output_file):
143 parent_directory = os.path.dirname(output_file)
144 if not os.path.isdir(parent_directory):
154 output_file = file(os.path.join(output_dir, GTEST_H_OUTPUT), 'w')
167 for line in file(os.path.join(gtest_root, gtest_header_path), 'r'):
183 output_file = file(os.path.join(output_dir, GTEST_ALL_CC_OUTPUT), 'w')
196 for line in file(os.path.join(gtest_root, gtest_source_file), 'r'):