]> granicus.if.org Git - python/commitdiff
skip test_gdb on OpenIndiana
authorBenjamin Peterson <benjamin@python.org>
Mon, 24 Nov 2014 04:02:47 +0000 (22:02 -0600)
committerBenjamin Peterson <benjamin@python.org>
Mon, 24 Nov 2014 04:02:47 +0000 (22:02 -0600)
Lib/test/test_gdb.py

index 2208eb31d4f484e2b3ef2eeb7ad9ce1626e4483a..9cfe3e4ec4bcf0531bf72257e7b35f300a46b970 100644 (file)
@@ -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),