~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to tools/subunit-sum

  • Committer: Vincent Ladeuil
  • Date: 2011-06-16 10:45:17 UTC
  • mto: This revision was merged to the branch mainline in revision 5981.
  • Revision ID: v.ladeuil+lp@free.fr-20110616104517-4qzhmzkxgozji88y
Add copyright notice, some docs and some cleanups.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/env python
2
 
 
3
 
"""Displays the sum of a counter in a subunit stream."""
4
 
 
5
 
from optparse import OptionParser
 
2
# Copyright (C) 2011 Canonical Ltd
 
3
#
 
4
# This program is free software; you can redistribute it and/or modify
 
5
# it under the terms of the GNU General Public License as published by
 
6
# the Free Software Foundation; either version 2 of the License, or
 
7
# (at your option) any later version.
 
8
#
 
9
# This program is distributed in the hope that it will be useful,
 
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
# GNU General Public License for more details.
 
13
#
 
14
# You should have received a copy of the GNU General Public License
 
15
# along with this program; if not, write to the Free Software
 
16
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
17
 
 
18
"""Displays the sum of a counter found in a subunit stream.
 
19
 
 
20
Each test have (or not) the counter as a named detail in the stream.
 
21
"""
 
22
 
 
23
import subunit
6
24
import sys
7
25
import testtools
8
26
import unittest
9
27
 
10
 
from subunit import DiscardStream, ProtocolTestCase
11
28
 
12
29
class TestSumCounter(testtools.TestResult):
13
30
 
39
56
 
40
57
counter_names = sys.argv[1:]
41
58
result = TestSumCounter(counter_names)
42
 
test = ProtocolTestCase(sys.stdin)
 
59
test = subunit.ProtocolTestCase(sys.stdin)
43
60
test.run(result)
44
61
result.display_totals(sys.stdout)