Home
last modified time | relevance | path

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

/tools/asuite/atest/
Datest_utils.py610 def check_md5(check_file, missing_ok=False): argument
631 if not os.path.isfile(check_file):
634 'Unable to verify: %s not found.', check_file)
636 if not is_valid_json_file(check_file):
638 'Unable to verify: %s invalid JSON format.', check_file)
640 with open(check_file, 'r+') as _file: