From 14ed1732cee8d1e721977eb2673b88995ef46608 Mon Sep 17 00:00:00 2001 From: Timothy J Fontaine Date: Tue, 18 Dec 2012 23:10:17 -0500 Subject: [PATCH] test: add TAP output to the test runner --- tools/test.py | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/tools/test.py b/tools/test.py index d711f9c..e94ad24 100755 --- a/tools/test.py +++ b/tools/test.py @@ -221,6 +221,31 @@ class DotsProgressIndicator(SimpleProgressIndicator): sys.stdout.flush() +class TapProgressIndicator(SimpleProgressIndicator): + + def Starting(self): + print '1..%i' % len(self.cases) + self._done = 0 + + def AboutToRun(self, case): + pass + + def HasRun(self, output): + self._done += 1 + command = basename(output.command[1]) + if output.UnexpectedOutput(): + print 'not ok %i - %s' % (self._done, command) + for l in output.output.stderr.split(os.linesep): + print '#' + l + for l in output.output.stdout.split(os.linesep): + print '#' + l + else: + print 'ok %i - %s' % (self._done, command) + + def Done(self): + pass + + class CompactProgressIndicator(ProgressIndicator): def __init__(self, cases, templates): @@ -311,6 +336,7 @@ PROGRESS_INDICATORS = { 'verbose': VerboseProgressIndicator, 'dots': DotsProgressIndicator, 'color': ColorProgressIndicator, + 'tap': TapProgressIndicator, 'mono': MonochromeProgressIndicator } @@ -1140,7 +1166,7 @@ def BuildOptions(): result.add_option("-S", dest="scons_flags", help="Flag to pass through to scons", default=[], action="append") result.add_option("-p", "--progress", - help="The style of progress indicator (verbose, dots, color, mono)", + help="The style of progress indicator (verbose, dots, color, mono, tap)", choices=PROGRESS_INDICATORS.keys(), default="mono") result.add_option("--no-build", help="Don't build requirements", default=True, action="store_true") -- 2.7.4