diff options
author | Steve Dower <steve.dower@microsoft.com> | 2016-09-07 02:38:15 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2016-09-07 02:38:15 (GMT) |
commit | 22d0698d3b034f4f4314aa793da7225a5da640ba (patch) | |
tree | f37ff8f491d40b22f8828d7f7a6c1912df6ff869 /Lib/test/test_gdb.py | |
parent | a571120410bf7a92ca612068cf1a754d5dca614e (diff) | |
download | cpython-22d0698d3b034f4f4314aa793da7225a5da640ba.zip cpython-22d0698d3b034f4f4314aa793da7225a5da640ba.tar.gz cpython-22d0698d3b034f4f4314aa793da7225a5da640ba.tar.bz2 |
Adds test.support.PGO and skips tests that are not useful for PGO.
Diffstat (limited to 'Lib/test/test_gdb.py')
-rw-r--r-- | Lib/test/test_gdb.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py index 09bafbd..30b5f16 100644 --- a/Lib/test/test_gdb.py +++ b/Lib/test/test_gdb.py @@ -110,6 +110,7 @@ HAS_PYUP_PYDOWN = gdb_has_frame_select() BREAKPOINT_FN='builtin_id' +@support.skipIf(support.PGO, "not useful for PGO") class DebuggerTests(unittest.TestCase): """Test that the debugger can debug Python.""" |