]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/compare-sections.exp
gdb/testsuite: remove use of then keyword from gdb.base/*.exp
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / compare-sections.exp
CommitLineData
4a94e368 1# Copyright 2014-2022 Free Software Foundation, Inc.
936d2992
PA
2
3# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by
5# the Free Software Foundation; either version 3 of the License, or
6# (at your option) any later version.
7#
8# This program is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11# GNU General Public License for more details.
12#
13# You should have received a copy of the GNU General Public License
14# along with this program. If not, see <http://www.gnu.org/licenses/>.
15
16# Test the compare-sections command.
17
18standard_testfile
19
20if {[prepare_for_testing "failed to prepare" $testfile $srcfile {debug}]} {
21 return -1
22}
23
34dafe9f
TV
24set is_pie [exec_is_pie $binfile]
25
936d2992
PA
26# Run the compare-sections command along with any options as specified
27# by OPTIONS, and check that no mismatch is found.
28proc compare_sections { {options ""} } {
29 global gdb_prompt
30
31 if {$options != ""} {
32 set command "compare-sections $options"
33 } else {
34 set command "compare-sections"
35 }
36 set test $command
37 gdb_test_multiple $command $test {
38 -re "MIS-MATCHED.*$gdb_prompt $" {
39 fail $test
40 }
41 -re "warning.*One or more sections.*does not match.*loaded file.*$gdb_prompt $" {
42 fail $test
43 }
44 -re "Section.*matched.*$gdb_prompt $" {
45 pass $test
46 }
47 }
48}
49
50gdb_file_cmd $binfile
51
52with_test_prefix "after file" {
53 # Before starting the target, we're just comparing the
54 # executable's sections against themselves... This should never
55 # find a mismatch.
56 compare_sections
57 compare_sections "-r"
58}
59
60# Load the file into the target.
61gdb_reload
62
63with_test_prefix "after reload" {
64 # We're presumabily still stopped at the entry point. All
65 # sections should match.
66 compare_sections
67 compare_sections "-r"
68}
69
70# Try comparing just one section. Assume there's a .text section,
71# which is a pretty safe bet.
72set command "compare-sections .text"
73set command_re [string_to_regexp $command]
74set test $command
75gdb_test_multiple $command $test {
76 -re "^$command_re\r\nSection .text, range $hex -- $hex. matched\.\r\n$gdb_prompt $" {
77 pass $test
78 }
79}
80
81# Now get past startup code.
65a33d75 82if {![runto_main]} {
936d2992
PA
83 return 0
84}
85
86with_test_prefix "after run to main" {
87 # Assume all targets' startup code changes some loaded variable.
88 gdb_test "compare-sections" \
89 "MIS-MATCHED.*warning.*One or more sections.*does not match.*loaded file"
90
34dafe9f
TV
91 if { $is_pie == 1 } {
92 gdb_test "compare-sections -r" \
93 "MIS-MATCHED.*warning.*One or more sections.*does not match.*loaded file"
94 } else {
95 # Assume startup code doesn't change read-only sections.
96 compare_sections "-r"
97 }
936d2992
PA
98}
99
100# Now test that "compare-sections -r" works as expected. Look for an
101# address in a read-only section, patch it, and check that
102# "compare-sections -r" detects a mismatch.
103with_test_prefix "read-only" {
104 set ro_address 0
105 set has_ro_sections 0
106 set test "list read-only sections"
107 gdb_test_multiple "maint info sections READONLY" $test {
108 -re "($hex)->$hex at $hex. \[^\r\n\]* READONLY.*$gdb_prompt $" {
109 set ro_address $expect_out(1,string)
110 set has_ro_sections 1
111 pass $test
112 }
113 -re "$gdb_prompt $" {
114 pass $test
115 }
116 }
117
118 if {!$has_ro_sections} {
119 unsupported "no read-only sections"
120 return -1;
121 }
122
123 set orig -1
124
125 set test "get value of read-only section"
df8899e5 126 gdb_test_multiple "print /u *(unsigned char *) $ro_address" "$test" {
936d2992
PA
127 -re " = (\[0-9\]*).*$gdb_prompt $" {
128 set orig $expect_out(1,string)
129 pass "$test"
130 }
131 }
132
133 if {$orig == -1} {
134 untested "couldn't read address of read-only section"
135 return -1
136 }
137
138 # Come up with different value.
139 set patch [expr 255 - $orig]
140
141 # Write PATCH to memory.
142 set written -1
143 set test "corrupt read-only section"
df8899e5
TP
144 gdb_test_multiple "print /u *(unsigned char *) $ro_address = $patch" "$test" {
145 -re " = .*Cannot access memory at address $ro_address.*$gdb_prompt $" {
146 pass "$test (cannot write)"
147 }
936d2992
PA
148 -re " = (\[0-9\]*).*$gdb_prompt $" {
149 set written $expect_out(1,string)
150 pass "$test"
151 }
152 }
153
154 if { $written != $patch } {
155 unsupported "can't patch read-only section"
156 return -1
157 }
158
159 gdb_test "compare-sections -r" \
160 "MIS-MATCHED.*warning.*One or more sections.*does not match.*loaded file.*"
161}