From: Benjamin Peterson Date: Mon, 24 Nov 2014 04:02:47 +0000 (-0600) Subject: skip test_gdb on OpenIndiana X-Git-Tag: v2.7.9rc1~13 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0636a4ba880866b06fe2fcefbe50dd0008a4323a;p=python skip test_gdb on OpenIndiana --- 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),