Commit 98b1b24f authored by Benjamin Peterson's avatar Benjamin Peterson

loosen solaris test

parent 0636a4ba
...@@ -25,7 +25,7 @@ gdb_minor_version = int(gdb_version_number.group(2)) ...@@ -25,7 +25,7 @@ gdb_minor_version = int(gdb_version_number.group(2))
if gdb_major_version < 7: if gdb_major_version < 7:
raise unittest.SkipTest("gdb versions before 7.0 didn't support python embedding" raise unittest.SkipTest("gdb versions before 7.0 didn't support python embedding"
" Saw:\n" + gdb_version) " Saw:\n" + gdb_version)
if sys.platform == "solaris": if sys.platform.startswith("solaris"):
raise unittest.SkipTest("test doesn't work very well on Solaris") raise unittest.SkipTest("test doesn't work very well on Solaris")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment