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:
Kentaro Sugimoto 2021-07-01 16:44:52 +09:00 committed by Anas Nashif
commit e8ab98712c

View file

@ -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