diff options
author | darylm503 <darylm503@6f19259b-4bc3-4df7-8a09-765794883524> | 2012-04-16 22:12:42 +0000 |
---|---|---|
committer | darylm503 <darylm503@6f19259b-4bc3-4df7-8a09-765794883524> | 2012-04-16 22:12:42 +0000 |
commit | 4710c53dcad1ebf3755f3efb9e80ac24bd72a9b2 (patch) | |
tree | 2d17d2388a78082e32f6a97120d707328143543b /AppPkg/Applications/Python/Python-2.7.2/Tools/compiler/regrtest.py | |
parent | cbc6b5e54599c7391ece99ad3c5313f4dd4ddda6 (diff) | |
download | edk2-platforms-4710c53dcad1ebf3755f3efb9e80ac24bd72a9b2.tar.xz |
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
Diffstat (limited to 'AppPkg/Applications/Python/Python-2.7.2/Tools/compiler/regrtest.py')
-rw-r--r-- | AppPkg/Applications/Python/Python-2.7.2/Tools/compiler/regrtest.py | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Tools/compiler/regrtest.py b/AppPkg/Applications/Python/Python-2.7.2/Tools/compiler/regrtest.py new file mode 100644 index 0000000000..ca6ab5d09b --- /dev/null +++ b/AppPkg/Applications/Python/Python-2.7.2/Tools/compiler/regrtest.py @@ -0,0 +1,78 @@ +"""Run the Python regression test using the compiler
+
+This test runs the standard Python test suite using bytecode generated
+by this compiler instead of by the builtin compiler.
+
+The regression test is run with the interpreter in verbose mode so
+that import problems can be observed easily.
+"""
+
+from compiler import compileFile
+
+import os
+import sys
+import test
+import tempfile
+
+def copy_test_suite():
+ dest = tempfile.mkdtemp()
+ os.system("cp -r %s/* %s" % (test.__path__[0], dest))
+ print "Creating copy of test suite in", dest
+ return dest
+
+def copy_library():
+ dest = tempfile.mkdtemp()
+ libdir = os.path.split(test.__path__[0])[0]
+ print "Found standard library in", libdir
+ print "Creating copy of standard library in", dest
+ os.system("cp -r %s/* %s" % (libdir, dest))
+ return dest
+
+def compile_files(dir):
+ print "Compiling", dir, "\n\t",
+ line_len = 10
+ for file in os.listdir(dir):
+ base, ext = os.path.splitext(file)
+ if ext == '.py':
+ source = os.path.join(dir, file)
+ line_len = line_len + len(file) + 1
+ if line_len > 75:
+ print "\n\t",
+ line_len = len(source) + 9
+ print file,
+ try:
+ compileFile(source)
+ except SyntaxError, err:
+ print err
+ continue
+ # make sure the .pyc file is not over-written
+ os.chmod(source + "c", 444)
+ elif file == 'CVS':
+ pass
+ else:
+ path = os.path.join(dir, file)
+ if os.path.isdir(path):
+ print
+ print
+ compile_files(path)
+ print "\t",
+ line_len = 10
+ print
+
+def run_regrtest(lib_dir):
+ test_dir = os.path.join(lib_dir, "test")
+ os.chdir(test_dir)
+ os.system("PYTHONPATH=%s %s -v regrtest.py" % (lib_dir, sys.executable))
+
+def cleanup(dir):
+ os.system("rm -rf %s" % dir)
+
+def main():
+ lib_dir = copy_library()
+ compile_files(lib_dir)
+ run_regrtest(lib_dir)
+ raw_input("Cleanup?")
+ cleanup(lib_dir)
+
+if __name__ == "__main__":
+ main()
|