From 77ba5969d656668a21d3ad2c96446363a4d4427d Mon Sep 17 00:00:00 2001 From: "Gregory P. Smith" Date: Thu, 8 Sep 2016 21:50:44 -0700 Subject: [PATCH] Disable test_gdb.PrettyPrintTests when compiled with optimizations, these often fail on PGO builds. --- Lib/test/test_gdb.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py index 313af2b4ba..38e570f4bf 100644 --- a/Lib/test/test_gdb.py +++ b/Lib/test/test_gdb.py @@ -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') -- 2.50.1