~launchpad/subunit/launchpad-ppa-hardy

« back to all changes in this revision

Viewing changes to runtests.py

  • Committer: Bazaar Package Importer
  • Author(s): Robert Collins
  • Date: 2009-12-20 16:33:29 UTC
  • mfrom: (1.1.3 upstream) (3.2.3 sid)
  • Revision ID: james.westby@ubuntu.com-20091220163329-o60chash60h5zzj2
Tags: 0.0.4-4
Upstream bugfix for FTBFS on test_child.c.

Show diffs side-by-side

added added

removed removed

Lines of Context:
129
129
    visitor = filteringVisitor(pattern)
130
130
    test_suite().visit(visitor)
131
131
    runner = ParameterisableTextTestRunner(verbosity=2)
132
 
    runner.resultFactory(earlyStopFactory)
 
132
    runner.resultFactory(unittest._TextTestResult)
133
133
    if not runner.run(visitor.suite()).wasSuccessful():
134
134
        return 1
135
135
    return 0