refactor: correct spells to that probably intended
Make correction on the terms "intput" appearing in sciripts/pylib/twister/twisterlib.py to "input" for all. This type of misspellings may cause another unnoticeable misspellings, when propagated by code completions. (assuming that the "intput" was intended to have the opposite meaning of "output", which also appear on the same areas) Signed-off-by: Kentaro Sugimoto <tarotene@gmail.com>
This commit is contained in:
parent
997bbcb000
commit
e8ab98712c
1 changed files with 3 additions and 3 deletions
|
@ -3736,12 +3736,12 @@ class CoverageTool:
|
||||||
return t
|
return t
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def retrieve_gcov_data(intput_file):
|
def retrieve_gcov_data(input_file):
|
||||||
logger.debug("Working on %s" % intput_file)
|
logger.debug("Working on %s" % input_file)
|
||||||
extracted_coverage_info = {}
|
extracted_coverage_info = {}
|
||||||
capture_data = False
|
capture_data = False
|
||||||
capture_complete = False
|
capture_complete = False
|
||||||
with open(intput_file, 'r') as fp:
|
with open(input_file, 'r') as fp:
|
||||||
for line in fp.readlines():
|
for line in fp.readlines():
|
||||||
if re.search("GCOV_COVERAGE_DUMP_START", line):
|
if re.search("GCOV_COVERAGE_DUMP_START", line):
|
||||||
capture_data = True
|
capture_data = True
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue