Home
last modified time | relevance | path

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

/tools/asuite/atest/tools/
Datest_tools.py389 def acloud_create(report_file, args="", no_metrics_notice=True): argument
399 report_file_arg = '--report-file={}'.format(report_file) if not match else ""
415 if au.is_valid_json_file(report_file):
417 with open(report_file, 'r') as _rfile:
420 with open(report_file, 'w+') as _wfile:
425 def probe_acloud_status(report_file): argument
440 if os.path.exists(report_file):
441 if not au.is_valid_json_file(report_file):
443 with open(report_file, 'r') as rfile:
454 report_file), constants.RED)
[all …]
Datest_tools_unittest.py112 report_file = '/tmp/acloud_status.json'
114 arg_with_equal = '-a --report-file={} --all'.format(report_file)
116 report_file)
118 arg_with_equal = '-b --report_file={} --ball'.format(report_file)
120 report_file)
122 arg_without_equal = '-c --report-file {} --call'.format(report_file)
124 report_file)
126 arg_without_equal = '-d --report_file {} --dall'.format(report_file)
128 report_file)
132 report_file)
/tools/acloud/public/
Dreport.py231 def Dump(self, report_file): argument
245 if not report_file:
248 with open(report_file, "w") as f:
251 os.path.abspath(report_file))
Dacloud_main.py480 if reporter and args.report_file:
481 reporter.Dump(args.report_file)
/tools/asuite/atest/
Datest.py693 report_file = at.get_report_file(results_dir, acloud_args)
696 args=[report_file],
699 return acloud_proc, report_file
729 proc_acloud, report_file = acloud_create_validator(results_dir, args)
795 status = at.probe_acloud_status(report_file)
798 acloud_duration = at.get_acloud_duration(report_file)
/tools/acloud/public/acloud_kernel/
Dacloud_kernel.py84 report.Dump(args.report_file)