diff options
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_gdb.py | 3 |
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), |