Commit 813271fc by Segher Boessenkool Committed by Segher Boessenkool

dg-extract-results.py (Prog.result_re): Include options in test name.

2014-09-19  Segher Boessenkool  <segher@kernel.crashing.org>

	* dg-extract-results.py (Prog.result_re): Include options in test name.

From-SVN: r215400
parent f8fb3155
2014-09-19 Segher Boessenkool <segher@kernel.crashing.org>
* dg-extract-results.py (Prog.result_re): Include options in test name.
2014-09-19 Olivier Hainque <hainque@adacore.com> 2014-09-19 Olivier Hainque <hainque@adacore.com>
* config-list.mk (LIST): Add powerpc-wrs-vxworksmils. * config-list.mk (LIST): Add powerpc-wrs-vxworksmils.
......
...@@ -117,7 +117,7 @@ class Prog: ...@@ -117,7 +117,7 @@ class Prog:
self.tool_re = re.compile (r'^\t\t=== (.*) tests ===$') self.tool_re = re.compile (r'^\t\t=== (.*) tests ===$')
self.result_re = re.compile (r'^(PASS|XPASS|FAIL|XFAIL|UNRESOLVED' self.result_re = re.compile (r'^(PASS|XPASS|FAIL|XFAIL|UNRESOLVED'
r'|WARNING|ERROR|UNSUPPORTED|UNTESTED' r'|WARNING|ERROR|UNSUPPORTED|UNTESTED'
r'|KFAIL):\s*(\S+)') r'|KFAIL):\s*(.+)')
self.completed_re = re.compile (r'.* completed at (.*)') self.completed_re = re.compile (r'.* completed at (.*)')
# Pieces of text to write at the head of the output. # Pieces of text to write at the head of the output.
# start_line is a pair in which the first element is a datetime # start_line is a pair in which the first element is a datetime
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment