]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.arch/avr-flash-qualifier.exp
Update copyright year range in header of all files managed by GDB
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.arch / avr-flash-qualifier.exp
CommitLineData
1d506c26 1# Copyright 2014-2024 Free Software Foundation, Inc.
487d9753
PL
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# This file is part of the gdb testsuite.
17#
18# Contributed by Pierre Langlois <pierre.langlois@embecosm.com>
19# Tests for the AVR __flash named address space qualifier.
20
73c06197 21require {istarget "avr*"}
487d9753
PL
22
23# The __flash qualifier was added in GCC 4.7.
24if {[test_compiler_info {gcc-[0-4]-[0-6]}]} {
25 verbose "Skipping ${gdb_test_file_name}."
26 return
27}
28
29standard_testfile
5b362f04 30if {[prepare_for_testing "failed to prepare" ${testfile} ${srcfile}]} {
487d9753
PL
31 return -1
32}
33
34if ![runto [gdb_get_line_number "break here."]] {
35 untested "could not run to \"break here.\""
36 return -1
37}
38
39gdb_test "print pointer_to_flash" \
40 " = $hex <data_in_flash> .*"
41
42gdb_breakpoint "pass_to_function"
43gdb_continue_to_breakpoint "pass_to_function"
44
45gdb_test "print p" \
46 " = $hex <data_in_flash> .*"
47
48gdb_test "backtrace 1" \
49 "\#0 pass_to_function \\(p=$hex <data_in_flash> .*\\).*"