From: Benjamin Peterson Date: Mon, 24 Nov 2014 04:22:59 +0000 (-0600) Subject: loosen solaris test X-Git-Tag: v2.7.9rc1~12 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=98b1b24feaedf5b75ac989beb0b1298ec23424a2;p=python loosen solaris test --- diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py index 9cfe3e4ec4..c89959b3ba 100644 --- a/Lib/test/test_gdb.py +++ b/Lib/test/test_gdb.py @@ -25,7 +25,7 @@ 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": +if sys.platform.startswith("solaris"): raise unittest.SkipTest("test doesn't work very well on Solaris")