From fa1becee63a5b5047c89cac29d292d6a56f81497 Mon Sep 17 00:00:00 2001 From: Fu Wei Date: Mon, 29 Sep 2014 18:47:13 +0800 Subject: Move ACPI FWTS and dmidecode tests definitions to common dir 1)ubuntu/dmidecode.yaml -> common/dmidecode.yaml 2)ubuntu/fwts.yaml -> common/fwts.yaml 3)ubuntu/scripts/fwts-parser.py -> common/scripts/fwts-parser.py Reason: they are the common tests, and can be used by other OSs. Change-Id: I48755fec9a129eca573ba6fbf406c0bbf6247576 --- common/scripts/fwts-parser.py | 63 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100755 common/scripts/fwts-parser.py (limited to 'common/scripts/fwts-parser.py') diff --git a/common/scripts/fwts-parser.py b/common/scripts/fwts-parser.py new file mode 100755 index 0000000..bc20133 --- /dev/null +++ b/common/scripts/fwts-parser.py @@ -0,0 +1,63 @@ +#!/usr/bin/env python + +import re +import sys + +RESULT_MAP = { 'PAS': 'pass', + 'FAL': 'fail', + 'SKP': 'skip', + 'ABT': 'fail', + 'WRN': 'fail', + 'ERR': 'fail' } +line = re.compile("(?P[a-z_]+)\\s*-(?P[A-Z]+):(?P.*)") +header = re.compile("(?P[a-z]+):\\s(?P[ ()a-zA-Z-_]+)") +result = re.compile("(?P.*):\\s(?PTest [0-9]),\\s(?P.*)") +summary = re.compile("(?P[0-9]+) passed, (?P[0-9]+) failed, (?P[0-9]+) warning, (?P[0-9]+) aborted, (?P[0-9]+) skipped, (?P[0-9]+) info only") + +grouplist = {} + +with open(sys.argv[1], 'r') as f: + for l in f.readlines(): + linere = line.search(l) + if linere: + owner = linere.group('owner') + field = linere.group('field') + content = linere.group('content') + if field == 'HED': + headerre = header.search(content) + if headerre: + group_name = headerre.group('group_name') + gt = {'name': group_name, 'subtests': [], 'result': ''} + grouplist[owner] = gt + elif field in RESULT_MAP: + resultre = result.search(content) + if resultre: + test = {'test_name': resultre.group('test_name'), + 'result': RESULT_MAP[field], + 'comment': resultre.group('comment')} + grouplist[owner]['subtests'].append(test) + else: + if 'comment' not in grouplist[owner]: + grouplist[owner]['comment'] = content + grouplist[owner]['result'] = RESULT_MAP[field] + elif field == 'SUM': + sumre = summary.search(content) + if sumre: + if re.match("^0000", ''.join(sumre.groups())): # 0 passed, 0 failed, 0 warning, 0 aborted + grouplist[owner]['result'] = 'skip' + +for gname, t in grouplist.iteritems(): + if len(t['subtests']) == 0: + t_result = 'skip' + t_comment = t['name'] + if t['result']: + t_result = t['result'] + if 'comment' in t: + t_comment = t['comment'] + print("%s (%s): %s" % (gname, t_comment, t_result)) + else: + for tt in t['subtests']: + if tt['comment']: + print("%s %s(%s): %s" % (gname, tt['test_name'], tt['comment'], tt['result'])) + else: + print("%s %s(%s): %s" % (gname, tt['test_name'], t['name'], tt['result'])) -- cgit v1.2.3