summaryrefslogtreecommitdiffstats
path: root/Lib/test/regrtest.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-10-29 21:31:35 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-10-29 21:31:35 (GMT)
commit65c66ab2559256b5b3a1e2dd8ef9679121e3de64 (patch)
treed469b2c08a57d476852c48205962f62ad78ce8db /Lib/test/regrtest.py
parent9f5db07dab9a2f7f82e6e2763bfdb866ee0c1be3 (diff)
downloadcpython-65c66ab2559256b5b3a1e2dd8ef9679121e3de64.zip
cpython-65c66ab2559256b5b3a1e2dd8ef9679121e3de64.tar.gz
cpython-65c66ab2559256b5b3a1e2dd8ef9679121e3de64.tar.bz2
make gdb skip expected
Diffstat (limited to 'Lib/test/regrtest.py')
-rwxr-xr-xLib/test/regrtest.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py
index 300cf39..c487d29 100755
--- a/Lib/test/regrtest.py
+++ b/Lib/test/regrtest.py
@@ -1449,6 +1449,9 @@ class _ExpectedSkips:
if sys.platform != 'sunos5':
self.expected.add('test_nis')
+ if support.python_is_optimized():
+ self.expected.add("test_gdb")
+
self.valid = True
def isvalid(self):