summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-11-23 22:02:47 -0600
committerBenjamin Peterson <benjamin@python.org>2014-11-23 22:02:47 -0600
commit35310676607ba3938dc61622ec5ab91ace24f2bd (patch)
tree9be8e6cedf0d0a9ceb566279d157492b1435423d
parent1f5c04753c91747ea6d104418fcc1d6b28cd115d (diff)
downloadcpython-35310676607ba3938dc61622ec5ab91ace24f2bd.tar.gz
skip test_gdb on OpenIndiana
-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 2208eb31d4..9cfe3e4ec4 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),