Disable the cProfile test for now -- it's broken.
diff --git a/Lib/test/test_cProfile.py b/Lib/test/test_cProfile.py
index 07b2a9b..7ae0bca 100644
--- a/Lib/test/test_cProfile.py
+++ b/Lib/test/test_cProfile.py
@@ -119,5 +119,11 @@
         ticks += 1
         raise AttributeError
 
+
+def test_main():
+    from test.test_support import TestSkipped
+    raise TestSkipped('test_cProfile test is current broken')
+
+
 if __name__ == "__main__":
     test_main()