From 4710c53dcad1ebf3755f3efb9e80ac24bd72a9b2 Mon Sep 17 00:00:00 2001 From: darylm503 Date: Mon, 16 Apr 2012 22:12:42 +0000 Subject: AppPkg/Applications/Python: Add Python 2.7.2 sources since the release of Python 2.7.3 made them unavailable from the python.org web site. These files are a subset of the python-2.7.2.tgz distribution from python.org. Changed files from PyMod-2.7.2 have been copied into the corresponding directories of this tree, replacing the original files in the distribution. Signed-off-by: daryl.mcdaniel@intel.com git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13197 6f19259b-4bc3-4df7-8a09-765794883524 --- .../Python/Python-2.7.2/Lib/test/test_sundry.py | 96 ++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 AppPkg/Applications/Python/Python-2.7.2/Lib/test/test_sundry.py (limited to 'AppPkg/Applications/Python/Python-2.7.2/Lib/test/test_sundry.py') diff --git a/AppPkg/Applications/Python/Python-2.7.2/Lib/test/test_sundry.py b/AppPkg/Applications/Python/Python-2.7.2/Lib/test/test_sundry.py new file mode 100644 index 0000000000..4d6957a4ac --- /dev/null +++ b/AppPkg/Applications/Python/Python-2.7.2/Lib/test/test_sundry.py @@ -0,0 +1,96 @@ +"""Do a minimal test of all the modules that aren't otherwise tested.""" + +from test import test_support +import sys +import unittest + + +class TestUntestedModules(unittest.TestCase): + def test_at_least_import_untested_modules(self): + with test_support.check_warnings(quiet=True): + import CGIHTTPServer + import audiodev + import bdb + import cgitb + import code + import compileall + + import distutils.bcppcompiler + import distutils.ccompiler + import distutils.cygwinccompiler + import distutils.emxccompiler + import distutils.filelist + if sys.platform.startswith('win'): + import distutils.msvccompiler + import distutils.text_file + import distutils.unixccompiler + + import distutils.command.bdist_dumb + if sys.platform.startswith('win'): + import distutils.command.bdist_msi + import distutils.command.bdist + import distutils.command.bdist_rpm + import distutils.command.bdist_wininst + import distutils.command.build_clib + import distutils.command.build_ext + import distutils.command.build + import distutils.command.clean + import distutils.command.config + import distutils.command.install_data + import distutils.command.install_egg_info + import distutils.command.install_headers + import distutils.command.install_lib + import distutils.command.register + import distutils.command.sdist + import distutils.command.upload + + import encodings + import formatter + import getpass + import htmlentitydefs + import ihooks + import imghdr + import imputil + import keyword + import linecache + import macurl2path + import mailcap + import mimify + import nntplib + import nturl2path + import opcode + import os2emxpath + import pdb + import posixfile + import pstats + import py_compile + import rexec + import sched + import sndhdr + import statvfs + import stringold + import sunau + import sunaudio + import symbol + import tabnanny + import timeit + import toaiff + import token + try: + import tty # not available on Windows + except ImportError: + if test_support.verbose: + print "skipping tty" + + # Can't test the "user" module -- if the user has a ~/.pythonrc.py, it + # can screw up all sorts of things (esp. if it prints!). + #import user + import webbrowser + import xml + + +def test_main(): + test_support.run_unittest(TestUntestedModules) + +if __name__ == "__main__": + test_main() -- cgit v1.2.3