summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_cProfile.py
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2008-03-01 17:05:53 (GMT)
committerBarry Warsaw <barry@python.org>2008-03-01 17:05:53 (GMT)
commit014d4a026a2f969d33ec3c35edc5ac06a3a16933 (patch)
tree15598cf308dfec8fdd615ea986e50e428685ac15 /Lib/test/test_cProfile.py
parentc17b35c6b444817b178bffbc061b89d581ffc1e0 (diff)
downloadcpython-014d4a026a2f969d33ec3c35edc5ac06a3a16933.zip
cpython-014d4a026a2f969d33ec3c35edc5ac06a3a16933.tar.gz
cpython-014d4a026a2f969d33ec3c35edc5ac06a3a16933.tar.bz2
Disable the cProfile test for now -- it's broken.
Diffstat (limited to 'Lib/test/test_cProfile.py')
-rw-r--r--Lib/test/test_cProfile.py6
1 files changed, 6 insertions, 0 deletions
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 @@ class C:
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()