~ubuntu-branches/ubuntu/precise/python3.2/precise-proposed

« back to all changes in this revision

Viewing changes to Lib/test/test_lib2to3.py

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2012-03-09 18:40:39 UTC
  • mfrom: (30.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20120309184039-j3yk2emxr1plyo21
Tags: 3.2.3~rc1-1
* Python 3.2.3 release candidate 1.
* Update to 20120309 from the 3.2 branch.
* Fix libpython.a symlink. Closes: #660146.
* Build-depend on xauth.
* Run the gdb tests for the debug build only.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Skipping test_parser and test_all_fixers
2
2
# because of running
3
3
from lib2to3.tests import (test_fixers, test_pytree, test_util, test_refactor,
 
4
                           test_parser,
4
5
                           test_main as test_main_)
5
6
import unittest
6
7
from test.support import run_unittest
9
10
    tests = unittest.TestSuite()
10
11
    loader = unittest.TestLoader()
11
12
    for m in (test_fixers, test_pytree,test_util, test_refactor,
12
 
              test_main_):
 
13
              test_parser, test_main_):
13
14
        tests.addTests(loader.loadTestsFromModule(m))
14
15
    return tests
15
16