aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rwxr-xr-xtests/gdbserver.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/gdbserver.py b/tests/gdbserver.py
index 90ebbe9..c3c2eca 100755
--- a/tests/gdbserver.py
+++ b/tests/gdbserver.py
@@ -36,9 +36,10 @@ class DebugTest(unittest.TestCase):
def test_breakpoint(self):
self.gdb.command("b print_row")
# The breakpoint should be hit exactly 10 times.
- for _ in range(10):
+ for i in range(10):
output = self.gdb.command("c")
self.assertIn("Continuing", output)
+ self.assertIn("length=%d" % i, output)
self.assertIn("Breakpoint 1", output)
output = self.gdb.command("c")
self.assertIn("Continuing", output)