Commit b44c849d authored by Jason R. Coombs's avatar Jason R. Coombs

Merge backout for test suite fix

parents 65e33192 8ac147d6
...@@ -9,7 +9,7 @@ from distutils.filelist import glob_to_re, translate_pattern, FileList ...@@ -9,7 +9,7 @@ from distutils.filelist import glob_to_re, translate_pattern, FileList
from distutils import filelist from distutils import filelist
import test.support import test.support
from test.support import captured_stdout from test.support import captured_stdout, run_unittest
from distutils.tests import support from distutils.tests import support
MANIFEST_IN = """\ MANIFEST_IN = """\
...@@ -329,5 +329,12 @@ class FindAllTestCase(unittest.TestCase): ...@@ -329,5 +329,12 @@ class FindAllTestCase(unittest.TestCase):
self.assertEqual(filelist.findall(temp_dir), expected) self.assertEqual(filelist.findall(temp_dir), expected)
def test_suite():
return unittest.TestSuite([
unittest.makeSuite(FileListTestCase),
unittest.makeSuite(FindAllTestCase),
])
if __name__ == "__main__": if __name__ == "__main__":
unittest.main() run_unittest(test_suite())
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment