Home
last modified time | relevance | path

Searched refs:pathname_2 (Results 1 – 1 of 1) sorted by relevance

/GUIX-v6.4.1/test/guix_studio_test/test_view/
Dtest_utils.py183 def compare_file(pathname_1, pathname_2, encoding = "", compare_start_string = "", skip_line = ""): argument
184 logging.info('Comparing: %s and %s', pathname_1, pathname_2)
191 if not os.path.isfile(pathname_2):
192 logging.error("** ERROR ** %s does not exist", pathname_2)
198 file_2 = open(pathname_2, 'r', encoding=encoding)
201 file_2 = open(pathname_2, 'r')
238 def compare_output_file(pathname_1, pathname_2): argument
239 return compare_file(pathname_1, pathname_2, '', '#include')
241 def compare_xliff_file(pathname_1, pathname_2): argument
242 return compare_file(pathname_1, pathname_2, 'utf-8', '', '<file')
[all …]