Skip to content
Snippets Groups Projects
Commit 8468a8ee authored by Vincent Stehle's avatar Vincent Stehle
Browse files

Parser.py: trim test log field


Avoid duplicating the GUID, result and name in the log.

Signed-off-by: Vincent Stehle's avatarVincent Stehlé <vincent.stehle@arm.com>
parent 314cdbd8
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,7 @@ def test_parser(string,current_group,current_test_set,current_set_guid,current_s
"set guid": current_set_guid,
"guid": string[0], #FIXME:GUID's overlap
#"comment": string[-1], #FIXME:need to hash this out, sometime there is no comments
"log": ' '.join(string)
"log": ' '.join(string[3:])
}
return test_list
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment