aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.btrace/multi-thread-step.exp
blob: 2c108b2b27857f802cbc18bc96b0665563cd3f24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
# This testcase is part of GDB, the GNU debugger.
#
# Copyright 2013 Free Software Foundation, Inc.
#
# Contributed by Intel Corp. <markus.t.metzger@intel.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

# check for btrace support
if { [skip_btrace_tests] } { return -1 }

# start inferior
standard_testfile
if {[gdb_compile_pthreads "$srcdir/$subdir/$srcfile" "$binfile" executable {debug}] != "" } {
    return -1
}
clean_restart $testfile

if ![runto_main] {
    return -1
}

# set up breakpoints
set bp_1 [gdb_get_line_number "bp.1" $srcfile]
set bp_2 [gdb_get_line_number "bp.2" $srcfile]
set bp_3 [gdb_get_line_number "bp.3" $srcfile]

proc gdb_cont_to_line { line } {
	gdb_breakpoint $line
	gdb_continue_to_breakpoint "cont to $line" ".*$line\r\n.*"
	delete_breakpoints
}

# trace the code between the two breakpoints
delete_breakpoints
gdb_cont_to_line $srcfile:$bp_1
# make sure GDB knows about the new thread
gdb_test "info threads" ".*"
gdb_test_no_output "record btrace"
gdb_cont_to_line $srcfile:$bp_2

# navigate in the trace history for both threads
with_test_prefix "navigate" {
  gdb_test "thread 1" ".*"
  with_test_prefix "thread 1" {
    gdb_test "record goto begin" ".*"
    gdb_test "info record" ".*Replay in progress\.  At instruction 1\."
  }
  gdb_test "thread 2" ".*"
  with_test_prefix "thread 2" {
    gdb_test "record goto begin" ".*"
    gdb_test "info record" ".*Replay in progress\.  At instruction 1\."
  }
}

# step both threads
with_test_prefix "step" {
  gdb_test "thread 1" ".*"
  with_test_prefix "thread 1" {
    gdb_test "info record" ".*Replay in progress\.  At instruction 1\."
    gdb_test "stepi" ".*"
    gdb_test "info record" ".*Replay in progress\.  At instruction 2\."
  }
  gdb_test "thread 2" ".*"
  with_test_prefix "thread 2" {
    gdb_test "info record" ".*Replay in progress\.  At instruction 1\."
    gdb_test "stepi" ".*"
    gdb_test "info record" ".*Replay in progress\.  At instruction 2\."
  }
}

# run to the end of the history for both threads
with_test_prefix "cont" {
  gdb_test "thread 1" ".*"
  with_test_prefix "thread 1" {
    gdb_test "info record" ".*Replay in progress\.  At instruction 2\."
    gdb_test "continue" "No more reverse-execution history.*"
  }
  gdb_test "thread 2" ".*"
  with_test_prefix "thread 2" {
    gdb_test "info record" ".*Replay in progress\.  At instruction 2\."
    gdb_test "continue" "No more reverse-execution history.*"
  }
}

# reverse-step both threads
with_test_prefix "reverse-step" {
  gdb_test "thread 1" ".*"
  with_test_prefix "thread 1" {
    gdb_test "reverse-stepi" ".*"
    gdb_test "info record" ".*Replay in progress\..*"
  }
  gdb_test "thread 2" ".*"
  with_test_prefix "thread 2" {
    gdb_test "reverse-stepi" ".*"
    gdb_test "info record" ".*Replay in progress\..*"
  }
}

# both threads are still replaying
with_test_prefix "check" {
  gdb_test "thread 1" ".*"
  with_test_prefix "thread 1" {
    gdb_test "info record" ".*Replay in progress\..*"
  }
  gdb_test "thread 2" ".*"
  with_test_prefix "thread 2" {
    gdb_test "info record" ".*Replay in progress\..*"
  }
}

# navigate back into the history for thread 1 and continue thread 2
with_test_prefix "cont" {
  gdb_test "thread 1" ".*"
  with_test_prefix "thread 1" {
    gdb_test "record goto begin" ".*"
    gdb_test "info record" ".*Replay in progress\.  At instruction 1\."
  }
  gdb_test "thread 2" ".*"
  with_test_prefix "thread 2" {
    gdb_test "record goto end" ".*"
    gdb_cont_to_line $srcfile:$bp_3
  }
}