summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-11-24 04:02:47 (GMT)
committerBenjamin Peterson <benjamin@python.org>2014-11-24 04:02:47 (GMT)
commit0636a4ba880866b06fe2fcefbe50dd0008a4323a (patch)
tree303fd19fb32283f87295f4fe8bf1ab6cd2fddfdf /Lib
parente3e7d40514e5dd0c3847682a719577efcfae1d8f (diff)
downloadcpython-0636a4ba880866b06fe2fcefbe50dd0008a4323a.zip
cpython-0636a4ba880866b06fe2fcefbe50dd0008a4323a.tar.gz
cpython-0636a4ba880866b06fe2fcefbe50dd0008a4323a.tar.bz2
skip test_gdb on OpenIndiana
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_gdb.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py
index 2208eb3..9cfe3e4 100644
--- a/Lib/test/test_gdb.py
+++ b/Lib/test/test_gdb.py
@@ -25,6 +25,9 @@ gdb_minor_version = int(gdb_version_number.group(2))
if gdb_major_version < 7:
raise unittest.SkipTest("gdb versions before 7.0 didn't support python embedding"
" Saw:\n" + gdb_version)
+if sys.platform == "solaris":
+ raise unittest.SkipTest("test doesn't work very well on Solaris")
+
# Location of custom hooks file in a repository checkout.
checkout_hook_path = os.path.join(os.path.dirname(sys.executable),