about summary refs log tree commit diff
path: root/src/etc/check-summary.py
blob: 9312b685c14a2b5dc79d1aacfd31ad11e9901713 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python
#
# Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
# file at the top-level directory of this distribution and at
# http://rust-lang.org/COPYRIGHT.
#
# Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
# http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
# <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
# option. This file may not be copied, modified, or distributed
# except according to those terms.

import glob
import sys

if __name__ == '__main__':
    summaries = []

    def summarise(fname):
        summary = {}
        with open(fname) as fd:
            for line in fd:
                splitline = line.strip().split(' ')
                if len(splitline) == 1:
                    continue
                status = splitline[0]
                test = splitline[-1]
                # track bench runs
                if splitline[1] == 'ns/iter':
                    status = 'bench'
                if status not in summary:
                    summary[status] = []
                summary[status].append(test)
            summaries.append((fname, summary))

    def count(t):
        return sum(map(lambda f: len(f[1].get(t, [])), summaries))

    logfiles = sys.argv[1:]
    for files in map(glob.glob, logfiles):
        map(summarise, files)
    ok = count('ok')
    failed = count('failed')
    ignored = count('ignored')
    measured = count('bench')
    print("summary of %d test runs: %d passed; %d failed; %d ignored; %d measured" %
          (len(logfiles), ok, failed, ignored, measured))
    print("")

    if failed > 0:
        print("failed tests:")
        for f, s in summaries:
            failures = s.get('failed', [])
            if len(failures) > 0:
                print("  %s:" % (f))
            for test in failures:
                print("    %s" % (test))