(original) (raw)
changeset: 103109:556a11c11edd branch: 3.4 parent: 103005:e82b995d1a5c user: Jason R. Coombs jaraco@jaraco.com date: Mon Sep 05 22:24:01 2016 -0400 files: Lib/distutils/tests/test_filelist.py description: Issue #27960: Revert state to 675e20c38fdac6, backing out all changes by developed for Issue #12885. diff -r e82b995d1a5c -r 556a11c11edd Lib/distutils/tests/test_filelist.py --- a/Lib/distutils/tests/test_filelist.py Thu Sep 01 23:27:45 2016 -0400 +++ b/Lib/distutils/tests/test_filelist.py Mon Sep 05 22:24:01 2016 -0400 @@ -7,7 +7,7 @@ from distutils.errors import DistutilsTemplateError from distutils.filelist import glob_to_re, translate_pattern, FileList -from test.support import captured_stdout +from test.support import captured_stdout, run_unittest from distutils.tests import support MANIFEST_IN = """\ @@ -292,5 +292,8 @@ self.assertWarnings() +def test_suite(): + return unittest.makeSuite(FileListTestCase) + if __name__ == "__main__": - unittest.main() + run_unittest(test_suite()) /jaraco@jaraco.com