diff options
author | 2022-09-03 16:01:29 +0800 | |
---|---|---|
committer | 2022-12-08 05:59:50 +0000 | |
commit | 50df2b6904dc448c2a8c5ed4f974c631fd97b070 (patch) | |
tree | 6b1e29bb949d139bf196f9699d7e90dc3774064d /tests/bash/parser.py | |
parent | 39b04de14116e2a681dc6bad474dc76620d2de57 (diff) |
agl-test-framework: add test 'bash'
Add test script for 'bash'
Bug-AGL: SPEC-4345
Signed-off-by: duerpei <duep.fnst@fujitsu.com>
Change-Id: Id50dcc3d1a80b8d088b8af897aee82f6492e1a96
Diffstat (limited to 'tests/bash/parser.py')
-rw-r--r-- | tests/bash/parser.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/bash/parser.py b/tests/bash/parser.py new file mode 100644 index 0000000..8f2b635 --- /dev/null +++ b/tests/bash/parser.py @@ -0,0 +1,20 @@ +import re + +def log_parse(log_file): + reObj = re.compile('^(PASS|FAIL+?): (run.+)', re.MULTILINE) + case_list = dict() + test_log = open(log_file, 'r') + + line = test_log.readline() + while line: + matchs = reObj.search(line) + + if matchs: + groups = matchs.groups() + case_list[groups[1]] = [groups[1], groups[0], ""] + + line = test_log.readline() + + test_log.close() + + return case_list |