Kaydet (Commit) 77ba5969 authored tarafından Gregory P. Smith's avatar Gregory P. Smith

Disable test_gdb.PrettyPrintTests when compiled with optimizations,

these often fail on PGO builds.
üst 9cbfa791
......@@ -265,6 +265,9 @@ class DebuggerTests(unittest.TestCase):
def get_sample_script(self):
return findfile('gdb_sample.py')
@unittest.skipIf(python_is_optimized(),
"Python was compiled with optimizations")
class PrettyPrintTests(DebuggerTests):
def test_getting_backtrace(self):
gdb_output = self.get_stack_trace('print 42')
......
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