Home
last modified time | relevance | path

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

/external/jsoncpp/test/
Drunjsontests.py52 for input_path in tests + test_jsonchecker:
53 expect_failure = os.path.basename( input_path ).startswith( 'fail' )
54 is_json_checker_test = (input_path in test_jsonchecker) or expect_failure
55 print('TESTING:', input_path, end=' ')
59 input_path) )
66 failed_tests.append( (input_path, 'Parsing should have failed:\n%s' %
67 safeReadFile(input_path)) )
73 failed_tests.append( (input_path, 'Parsing failed:\n' + process_output) )
77 base_path = os.path.splitext(input_path)[0]
83 failed_tests.append( (input_path, 'Parsing failed:\n' + process_output) )
[all …]
Dpyjsontestrunner.py12 input_path = sys.argv[1] variable
13 base_path = os.path.splitext(input_path)[0]
59 input = file( input_path, 'rt' ).read()
/external/pdfium/testing/tools/
Drun_corpus_tests.py31 input_path = os.path.join(source_dir, input_filename)
40 shutil.copyfile(input_path, pdf_path)
75 def handle_result(test_suppressor, input_filename, input_path, result, argument
79 surprises.append(input_path)
82 failures.append(input_path)
117 input_path = os.path.join(walk_from_dir, file_name)
118 if not os.path.isfile(input_path):
122 test_cases.append((os.path.basename(input_path),
123 os.path.dirname(input_path)))
128 input_path = os.path.join(source_dir, input_filename)
[all …]
Drun_javascript_tests.py24 input_path = os.path.join(source_dir, input_root + '.in')
31 [sys.executable, fixup_path, '--output-dir=' + working_dir, input_path])
77 input_path = os.path.join(source_dir, input_filename)
78 if os.path.isfile(input_path):
82 failures.append(input_path)
Drun_pixel_tests.py26 input_path = os.path.join(source_dir, input_root + '.in')
39 [sys.executable, fixup_path, '--output-dir=' + working_dir, input_path])
87 input_path = os.path.join(source_dir, input_filename)
88 if os.path.isfile(input_path):
94 failures.append(input_path)
Dfixup_pdf_template.py74 def expand_file(input_path, output_path): argument
77 with open(input_path, 'rb') as infile:
82 print >> sys.stderr, 'failed to process %s' % input_path
/external/autotest/client/site_tests/video_VideoEncodeAccelerator/
Dvideo_VideoEncodeAccelerator.py62 input_path = os.path.join(self.tmpdir, path.split('/')[-1])
63 _download_video(path, input_path)
65 input_path = os.path.join(self.cr_source_dir, path)
68 '%s.out' % input_path.split('/')[-1])
71 input_path, width, height, profile, output_path, bit_rate)
79 logging.exception('error while encoding %s', input_path)
84 _remove_if_exists(input_path)
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/main/
Dmain-scripts.rb38 input_path = local_path( 'input.txt' )
39 open( input_path, 'w' ) { |f| f.write( "yada yada" ) }
51 input = File.open( input_path )
57 File.delete( input_path )
/external/autotest/server/site_tests/android_ACTS/
Dandroid_ACTS.py31 def fetch_file(self, input_path, sub_dir_name): argument
40 if os.path.exists(input_path):
41 self.test_station.send_file(input_path, self.ts_tempfolder)
45 input_path)
/external/llvm/utils/lit/tests/
Dunittest-adaptor.py15 input_path = sys.argv[1] variable
16 unittest_suite = lit.discovery.load_test_suite([input_path])
/external/autotest/client/site_tests/video_VEAPerf/
Dvideo_VEAPerf.py241 input_path = os.path.join(self.tmpdir,
243 self._download_video(path, input_path)
245 input_path = os.path.join(self.cr_source_dir, path)
248 input_path, width, height, profile, output_path,
256 _remove_if_exists(input_path)
/external/llvm/utils/llvm-build/llvmbuild/
Dconfigutil.py8 def configure_file(input_path, output_path, substitutions): argument
27 f = open(input_path, "rb")