]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.2/Lib/test/test_lib2to3.py
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Lib / test / test_lib2to3.py
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Lib/test/test_lib2to3.py b/AppPkg/Applications/Python/Python-2.7.2/Lib/test/test_lib2to3.py
deleted file mode 100644 (file)
index abb3297..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-# Skipping test_parser and test_all_fixers\r
-# because of running\r
-from lib2to3.tests import (test_fixers, test_pytree, test_util, test_refactor,\r
-                           test_parser, test_main as test_main_)\r
-import unittest\r
-from test.test_support import run_unittest\r
-\r
-def suite():\r
-    tests = unittest.TestSuite()\r
-    loader = unittest.TestLoader()\r
-    for m in (test_fixers, test_pytree,test_util, test_refactor, test_parser,\r
-              test_main_):\r
-        tests.addTests(loader.loadTestsFromModule(m))\r
-    return tests\r
-\r
-def test_main():\r
-    run_unittest(suite())\r
-\r
-\r
-if __name__ == '__main__':\r
-    test_main()\r