This is the mail archive of the gdb-prs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug record/22368] Assertion failure during recorded execution


https://sourceware.org/bugzilla/show_bug.cgi?id=22368

--- Comment #1 from astian at elude dot in ---
But of course I screw up the STR!

This:

>        break virt_viewer_app_on_application_startup
>        # Uncomment this "next" and you get a different error, see below.
>        #next
>        continue
>        next

Should be:

>        break virt_viewer_app_on_application_startup
         continue
>        # Uncomment this "next" and you get a different error, see below.
>        #next
         record
>        next

That is: run until the breakpoint, optionally execute one line, start
recording, execute one line (instead of "next", "step" or even "stepi" also
work).

Similarly, this:

> In the script, if instead of:
> 
>   break ...
>   continue
>   next
> 
> ...one does:
> 
>   break ...
>   next
>   continue
>   next

Should be:

> In the script, if instead of:
> 
>   break ...
>   continue
    record
>   next
> 
> ...one does:
> 
>   break ...
    continue
>   next
    record
>   next

-- 
You are receiving this mail because:
You are on the CC list for the bug.

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]