When setting the replay position to the end there is nothing to do if we are
not replaying. Check that and return immediately.
This avoids printing the current location if we're already at the end.
Signed-off-by: Markus Metzger <markus.t.metzger@intel.com>
gdb/
* record-btrace.c (record_btrace_set_replay): Check if replaying.
testsuite/
* gdb.btrace/record_goto.exp: Test "record goto end" twice.
Change-Id: I4878892408bab293261bbea40d6af28440ff3ec5
btinfo = &tp->btrace;
if (it == NULL || it->function == NULL)
- record_btrace_stop_replaying (tp);
+ {
+ if (!btrace_is_replaying (tp))
+ return;
+
+ record_btrace_stop_replaying (tp);
+ }
else
{
if (btinfo->replay == NULL)
# check that we can go to the end of the trace
gdb_test "record goto end" ".*main \\(\\) at record_goto.c:50.*"
+# check that we don't repeat the current location if we go to the end again
+gdb_test_no_output "record goto end" "goto end again"
+
# check that we're filling up the context correctly
gdb_test "record function-call-history /ci" [multi_line \
"14\t fun2\tinst 35,36" \