Home | History | Annotate | Download | only in scripts

Lines Matching refs:directory

46        directory of the directory holding this script.
66 # We assume that this file is in the scripts/ directory in the Google
67 # Test root directory.
86 def VerifyFileExists(directory, relative_path):
89 relative_path is the file path relative to the given directory.
92 if not os.path.isfile(os.path.join(directory, relative_path)):
93 print 'ERROR: Cannot find %s in directory %s.' % (relative_path,
94 directory)
95 print ('Please either specify a valid project root directory '
101 """Makes sure gtest_root points to a valid gtest root directory.
113 relative_path is relative to the output_dir directory.
122 print ('%s already exists in directory %s - overwrite it? (y/N) ' %
129 # Makes sure the directory holding the output file exists; creates
137 """Makes sure output_dir points to a valid output directory.