diff options
Diffstat (limited to 'tests/bluez5/parser.py')
-rw-r--r-- | tests/bluez5/parser.py | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/bluez5/parser.py b/tests/bluez5/parser.py deleted file mode 100644 index e21814f..0000000 --- a/tests/bluez5/parser.py +++ /dev/null @@ -1,20 +0,0 @@ -import re - -def log_parse(log_file): - reObj = re.compile('^(PASS|FAIL|SKIP): (.+)', re.MULTILINE) - case_list = dict() - test_log = open(log_file, 'r') - - line = test_log.readline() - while line: - matchs = reObj.search(line) - - if matchs: - groups = list(matchs.groups()) - case_list[groups[1]] = [groups[1], groups[0], ""] - - line = test_log.readline() - - test_log.close() - - return case_list |