Skip to content

Commit a31230f

Browse files
committed
Changed test
On arm, we start in a different place than _start (some assembly, possibly handrolled), which made setting a breakpoint at 48 wrong, so had to put the filename:line number. Tests should pass now.
1 parent e12cc89 commit a31230f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/checkpoint_persistent_shmem.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from util import *
22

3-
send_gdb('break 48')
3+
send_gdb('break checkpoint_persistent_shmem.c:48')
44
expect_gdb('Breakpoint 1')
55
send_gdb('c')
66
expect_gdb('Breakpoint 1')
@@ -19,4 +19,4 @@
1919
send_gdb('print ptr')
2020
expect_gdb('"hello parenthello child"')
2121

22-
ok()
22+
ok()

0 commit comments

Comments
 (0)