diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2022-02-03 19:40:05 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2022-02-03 19:40:05 -0500 |
commit | cf712c665dffcd2e1e939b9eb079974449437828 (patch) | |
tree | 59ae4c644469c632b7ba8b9c10d5461d449a7017 /tests/test_debug.py | |
parent | 20886ddc46384c008a8b4c9b253f326007adbba6 (diff) | |
download | python-coveragepy-git-cf712c665dffcd2e1e939b9eb079974449437828.tar.gz |
test: include lock debugging in the debug_callers test
Diffstat (limited to 'tests/test_debug.py')
-rw-r--r-- | tests/test_debug.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_debug.py b/tests/test_debug.py index 42f41706..a87f8e9b 100644 --- a/tests/test_debug.py +++ b/tests/test_debug.py @@ -144,7 +144,7 @@ class DebugTraceTest(CoverageTest): assert re_lines(pid_prefix + "Not tracing ", out_lines) def test_debug_callers(self): - out_lines = self.f1_debug_output(["pid", "dataop", "dataio", "callers"]) + out_lines = self.f1_debug_output(["pid", "dataop", "dataio", "callers", "lock"]) # For every real message, there should be a stack trace with a line like # "f1_debug_output : /Users/ned/coverage/tests/test_debug.py @71" real_messages = re_lines(r":\d+", out_lines, match=False) |