diff options
author | segher <segher@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-10-02 18:24:07 +0000 |
---|---|---|
committer | segher <segher@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-10-02 18:24:07 +0000 |
commit | b1f3c323a1148c0743c0efec3d61ecf60fbfc995 (patch) | |
tree | 0cc798393d4b1430f3f04d0f31cd533b5a142236 /contrib | |
parent | f015a042ed3905a9fe700cac73063637577cba4f (diff) | |
download | gcc-b1f3c323a1148c0743c0efec3d61ecf60fbfc995.tar.gz |
2014-10-02 Segher Boessenkool <segher@kernel.crashing.org>
* dg-extract-results.py (output_variation): Always sort if do_sum.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@215817 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/ChangeLog | 4 | ||||
-rw-r--r-- | contrib/dg-extract-results.py | 10 |
2 files changed, 5 insertions, 9 deletions
diff --git a/contrib/ChangeLog b/contrib/ChangeLog index f7cb37e9aab..7fa1b318872 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,7 @@ +2014-10-02 Segher Boessenkool <segher@kernel.crashing.org> + + * dg-extract-results.py (output_variation): Always sort if do_sum. + 2014-09-22 Tom de Vries <tom@codesourcery.com> * mklog: Add --inline option. diff --git a/contrib/dg-extract-results.py b/contrib/dg-extract-results.py index fafd38e76f9..7db5e64cfe3 100644 --- a/contrib/dg-extract-results.py +++ b/contrib/dg-extract-results.py @@ -495,15 +495,7 @@ class Prog: key = attrgetter ('name')): sys.stdout.write ('Running ' + harness.name + ' ...\n') if self.do_sum: - # Keep the original test result order if there was only - # one segment for this harness. This is needed for - # unsorted.exp, which has unusual test names. Otherwise - # sort the tests by test filename. If there are several - # subtests for the same test filename (such as 'compilation', - # 'test for excess errors', etc.) then keep the subtests - # in the original order. - if len (harness.segments) > 1: - harness.results.sort() + harness.results.sort() for (key, line) in harness.results: sys.stdout.write (line) else: |